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

    :root {
      --blue-1: #6bb8d9;
      --blue-2: #92cde8;
      --blue-3: #bde0f5;
      --blue-4: #d9eef8;
      --text-primary: #0d0d0d;
      --text-secondary: #555555;
      --text-muted: #888888;
      --bg-section: #f4f6f8;
      --shadow-card: 0 2px 20px rgba(0,0,0,0.055);
      --shadow-hover: 0 8px 32px rgba(0,0,0,0.1);
      --bg-white: #ffffff;
      --radius-pill: 100px;
      --radius-card: 20px;
      --radius-card-lg: 28px;
      --font-sans: "Inter", sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-primary);
      background: var(--bg-white);
      -webkit-font-smoothing: antialiased;
    }

    

    .site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 40px;
      background: transparent;
      transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
    }

    
    .site-nav.nav-solid {
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 1px 0 rgba(0,0,0,0.07);
      padding: 12px 40px;
    }

    
    .nav-logo-img {
      height: 36px;
      width: auto;
      display: block;
      transition: opacity 0.35s ease;
    }

    .nav-logo-color { display: none; }

    .nav-solid .nav-logo-white { display: none; }
    .nav-solid .nav-logo-color { display: block; }

    
    .nav-cta {
      background: var(--bg-white);
      color: var(--text-primary);
      border: none;
      padding: 12px 24px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: opacity 0.2s, background 0.35s ease, color 0.35s ease;
    }

    .nav-solid .nav-cta {
      background: var(--text-primary);
      color: var(--bg-white);
    }

    .nav-cta:hover { opacity: 0.8; }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: white; }

    .nav-solid .nav-links a {
      color: rgba(0,0,0,0.55);
    }

    .nav-solid .nav-links a:hover { color: #0d0d0d; }

    
    .hero {
      min-height: 67vh;
      background: url('hero-sky.webp') center center / cover no-repeat;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      text-align: left;
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(10, 50, 110, 0.18) 0%,
        rgba(15, 60, 120, 0.08) 40%,
        transparent 65%
      );
      pointer-events: none;
      z-index: 0;
    }

    .hero-content {
      padding: 120px 0 60px 8%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      align-self: center;
      position: relative;
      z-index: 1;
    }

    .hero-image-wrap {
      position: relative;
      height: 85vh;
      aspect-ratio: 1379 / 2213; 
      align-self: end;
      justify-self: center;
    }

    .hero-person-img {
      width: 100%;
      height: 100%;
      display: block;
    }

    
    
    .chat-over-frame {
      position: absolute;
      top: 40%;
      bottom: -2%;
      left: 15%;
      right: 15%;
      border: 3px solid rgba(255, 255, 255, 0.95);
      border-radius: 22px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      background: transparent;
    }

    
    .chat-inner-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px 10px;
      background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.06) 100%
      );
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border-bottom: 1px solid rgba(255,255,255,0.18);
      flex-shrink: 0;
    }

    .chat-avatar-sm {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #60a5fa, #1d4ed8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: white;
      flex-shrink: 0;
    }

    .chat-header-info { display: flex; flex-direction: column; }
    .chat-name        { font-size: 13px; font-weight: 600; color: white; line-height: 1.3; }
    .chat-online      { font-size: 11px; color: #4ade80; line-height: 1.4; }

    
    .chat-body {
      flex: 1;
      padding: 8px 12px 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      overflow: hidden;
      justify-content: flex-start;
    }

    .chat-bubble {
      max-width: 82%;
      padding: 9px 13px;
      border-radius: 16px;
      font-size: 13px;
      line-height: 1.5;
      opacity: 0;
      transform: translateY(6px);
      animation: bubbleIn 0.32s ease forwards;
    }

    
    .chat-bubble.user {
      align-self: flex-end;
      background: #0b57d0;
      color: white;
      border-bottom-right-radius: 4px;
    }

    
    .chat-bubble.ai {
      align-self: flex-start;
      background: rgba(230,230,235,0.92);
      color: #1a1a1a;
      border-bottom-left-radius: 4px;
    }

    .chat-bubble.ai.last   { border-bottom-left-radius: 18px; }
    .chat-bubble.user.last { border-bottom-right-radius: 18px; }

    .chat-timestamp {
      font-size: 10px;
      color: rgba(80,80,80,0.55);
      align-self: center;
      margin: 3px 0 1px;
      opacity: 0;
      animation: bubbleIn 0.2s ease forwards;
    }

    .typing-indicator {
      align-self: flex-start;
      background: rgba(225,225,230,0.92);
      padding: 9px 14px;
      border-radius: 16px;
      border-bottom-left-radius: 4px;
      display: flex;
      gap: 4px;
      align-items: center;
      opacity: 0;
      animation: bubbleIn 0.24s ease forwards;
    }

    .typing-dot {
      width: 6px;
      height: 6px;
      background: rgba(100,100,110,0.7);
      border-radius: 50%;
      animation: typingBounce 1.1s ease-in-out infinite;
    }
    .typing-dot:nth-child(2) { animation-delay: 0.18s; }
    .typing-dot:nth-child(3) { animation-delay: 0.36s; }

    @keyframes bubbleIn {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes typingBounce {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
      30% { transform: translateY(-5px); opacity: 1; }
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.22);
      border: 1px solid rgba(255,255,255,0.35);
      backdrop-filter: blur(8px);
      color: rgba(255,255,255,0.85);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: var(--radius-pill);
      margin-bottom: 36px;
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: white;
      opacity: 0.6;
    }

    .hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(36px, 4.5vw, 68px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: #ffffff;
      max-width: 680px;
      margin-bottom: 24px;
      text-shadow: none;
    }

    .hero-title .italic-serif {
      font-family: 'Playfair Display', Georgia, serif;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -0.01em;
      color: #ffffff;
    }

    .hero-subtitle {
      font-size: clamp(16px, 1.5vw, 19px);
      font-weight: 400;
      color: #ffffff;
      max-width: 460px;
      line-height: 1.6;
      margin-bottom: 44px;
      text-shadow: none;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .btn-primary {
      background: var(--text-primary);
      color: white;
      padding: 16px 36px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: opacity 0.2s, transform 0.2s;
    }

    .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

    
    .btn-hero-cta {
      background: var(--text-primary);
      color: #ffffff;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
      text-transform: none;
      padding: 15px 30px;
      border-radius: 14px;
      transition: opacity 0.2s, transform 0.2s;
    }

    .btn-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      font-size: 12px;
      line-height: 1;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-hero-cta:hover .btn-arrow {
      background: rgba(255,255,255,0.25);
      transform: translate(1px, -1px);
    }

    .btn-secondary {
      background: #ffffff;
      color: #0d0d0d;
      padding: 15px 30px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
      text-transform: none;
      border: 1.5px solid rgba(0,0,0,0.12);
      border-radius: 14px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .btn-secondary:hover {
      background: #f5f5f5;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    
    section {
      padding: 120px 40px;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
      display: block;
    }

    .section-title {
      font-family: var(--font-sans);
      font-size: clamp(32px, 4.5vw, 56px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: var(--text-primary);
      margin-bottom: 20px;
    }

    .section-subtitle {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.6;
      max-width: 520px;
    }

    
    .agents {
      background: var(--bg-section);
    }

    .agents-header {
      margin-bottom: 64px;
      text-align: center;
    }

    .agents-header .section-subtitle {
      margin: 0 auto;
    }

    

    .agents-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .agent-card {
      background: var(--bg-white);
      border-radius: var(--radius-card-lg);
      border: 1px solid #e8e8e8;
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .agent-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.1);
    }

    .agent-photo {
      width: 100%;
      height: 310px;
      position: relative;
      overflow: hidden;
    }

    .agent-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .agent-card:hover .agent-photo img {
      transform: scale(1.05);
    }

    .agent-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(8,8,18,0.68) 100%
      );
    }

    .agent-photo-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: white;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: var(--radius-pill);
    }

    .agent-photo-name {
      position: absolute;
      bottom: 20px;
      left: 22px;
      right: 22px;
    }

    .agent-photo-name h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: white;
      line-height: 1.05;
    }

    .agent-photo-name .agent-role {
      font-size: 10.5px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.13em;
      margin-top: 4px;
    }

    .agent-body {
      padding: 24px 26px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex: 1;
    }

    .agent-body .plan-btn {
      margin-top: auto;
    }

    .agent-desc {
      font-size: 13.5px;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    .agent-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .agent-features li {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.35;
    }

    .agent-features li::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--blue-1);
      flex-shrink: 0;
    }

    
    .how-it-works {
      background: var(--bg-white);
    }

    .how-sticky-wrap {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 0 96px;
      align-items: start;
    }

    .how-sticky-header {
      position: sticky;
      top: 110px;
    }

    .how-sticky-header .section-subtitle {
      max-width: 300px;
    }

    
    .how-steps {
      display: flex;
      flex-direction: column;
      padding-top: 0;
    }

    .how-step-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 0 28px;
    }

    
    .how-step-path {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .how-step-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--text-primary);
      color: white;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      z-index: 1;
    }

    .how-step-connector {
      flex: 1;
      width: 0;
      border-left: 1.5px dashed #d4d4d4;
      margin-top: 10px;
      margin-bottom: 0;
      min-height: 32px;
    }

    .how-step-item:last-child .how-step-connector {
      display: none;
    }

    
    .how-step-card {
      background: #ffffff;
      border: 1px solid #e8e8e8;
      border-radius: var(--radius-card-lg);
      padding: 32px 32px 36px;
      margin-bottom: 24px;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }

    
    .how-step-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue-1) 0%, var(--blue-3) 100%);
    }

    .how-step-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.025em;
      margin-bottom: 8px;
      color: var(--text-primary);
    }

    .how-step-card > p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-bottom: 22px;
    }

    
    .integrations-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .integration-pill {
      background: #f9f9f9;
      border: 1px solid #ebebeb;
      border-radius: 11px;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-primary);
      transition: background 0.18s, border-color 0.18s;
    }

    .integration-pill:hover {
      background: #f2f7fb;
      border-color: var(--blue-3);
    }

    .integ-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 800;
      color: white;
      flex-shrink: 0;
      letter-spacing: 0;
      overflow: hidden;
    }

    .integ-icon img {
      width: 16px;
      height: 16px;
      display: block;
      object-fit: contain;
    }

    .integrations-footer {
      margin-top: 14px;
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 600;
      color: #16a34a;
    }

    .integrations-footer::before {
      content: '';
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
    }

    
    .metrics-dashboard {
      background: #eef3f8;
      border-radius: 16px;
      padding: 10px;
      margin-top: 4px;
    }

    .metrics-db-header { display: none; }

    .how-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .how-metric-item {
      background: #ffffff;
      border-radius: 14px;
      border: 1px solid #e4ecf3;
      box-shadow: 0 2px 14px rgba(13,30,55,0.06);
      padding: 16px 16px 12px;
      display: flex;
      flex-direction: column;
    }

    .metric-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .metric-card-title {
      font-size: 12.5px;
      font-weight: 700;
      color: #0d0d0d;
      letter-spacing: -0.01em;
      line-height: 1.25;
    }

    .metric-card-actions {
      display: flex;
      gap: 5px;
      flex-shrink: 0;
    }

    .metric-card-action-btn {
      width: 26px; height: 26px;
      border-radius: 7px;
      background: #f0f4f8;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .metric-card-action-btn svg {
      width: 12px; height: 12px;
      fill: none;
      stroke: #8a9ab5;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .metric-period {
      font-size: 11px;
      color: #8a9ab5;
      margin-bottom: 2px;
      font-weight: 500;
    }

    .how-metric-item .metric-value {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: #0d0d0d;
      line-height: 1;
      margin-bottom: 9px;
    }

    .metric-trend-pill {
      display: inline-flex;
      align-self: flex-start;
      font-size: 10.5px;
      font-weight: 700;
      padding: 5px 11px;
      border-radius: 20px;
      white-space: nowrap;
      margin-bottom: 12px;
    }

    .metric-trend-pill.up {
      background: rgba(34,197,94,0.1);
      color: #15803d;
      border: 1px solid rgba(34,197,94,0.22);
    }

    .metric-trend-pill.warn {
      background: rgba(245,158,11,0.1);
      color: #b45309;
      border: 1px solid rgba(245,158,11,0.22);
    }

    .metric-chart {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 5px;
      min-height: 68px;
    }

    .metric-chart svg {
      width: 100%;
      flex: 1;
      display: block;
      overflow: visible;
    }

    .metric-chart-labels {
      display: flex;
      justify-content: space-between;
      padding: 0 2px;
    }

    .metric-chart-labels span {
      font-size: 9px;
      font-weight: 500;
      color: #b0bec8;
      letter-spacing: 0.02em;
    }

    
    .notif-panel {
      background: #f7f8fa;
      border: 1px solid #e8e8e8;
      border-radius: 16px;
      overflow: hidden;
    }

    .notif-panel-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      background: #ffffff;
      border-bottom: 1px solid #ebebeb;
    }

    .notif-live-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #22c55e;
      flex-shrink: 0;
      box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    }

    .notif-panel-title {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: -0.01em;
      flex: 1;
    }

    .notif-count-badge {
      font-size: 10px;
      font-weight: 700;
      background: var(--blue-1);
      color: white;
      padding: 2px 9px;
      border-radius: 20px;
    }

    .notif-items {
      display: flex;
      flex-direction: column;
    }

    .notif-item {
      padding: 14px 16px;
      border-bottom: 1px solid #ebebeb;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      transition: background 0.18s;
    }

    .notif-item:last-child { border-bottom: none; }
    .notif-item:hover { background: #eef3f8; }

    .notif-agent-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 800;
      color: white;
      flex-shrink: 0;
      margin-top: 1px;
      overflow: hidden;
    }

    .notif-agent-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .notif-body { flex: 1; }

    .notif-sender {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 3px;
    }

    .notif-text {
      font-size: 13px;
      color: var(--text-primary);
      line-height: 1.5;
    }

    .notif-time {
      font-size: 10px;
      color: var(--text-muted);
      white-space: nowrap;
      padding-top: 2px;
    }

    
    .pricing {
      background: #eef2f7;
    }

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

    .pricing-header .section-subtitle {
      margin: 0 auto;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .plan-inherits {
      font-size: 11.5px;
      font-weight: 700;
      color: var(--blue-1);
      padding-bottom: 8px;
      margin-bottom: 6px;
      border-bottom: 1px solid rgba(107,184,217,0.18);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .plan-card.featured .plan-inherits {
      color: rgba(189,224,245,0.9);
      border-bottom-color: rgba(255,255,255,0.15);
    }

    .addons-section {
      margin-top: 40px;
      background: #ffffff;
      border-radius: 20px;
      border: 1px solid #e8e8e8;
      overflow: hidden;
      box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

    .addons-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 28px 14px;
      border-bottom: 1px solid #f0f0f0;
    }

    .addons-header h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 800;
      color: #0d0d0d;
      margin: 0;
      letter-spacing: -0.02em;
    }

    .addons-label {
      font-size: 10.5px;
      font-weight: 700;
      color: #8a9ab5;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .addon-row {
      display: grid;
      grid-template-columns: 1.3fr 2.2fr 1fr;
      padding: 16px 28px;
      border-bottom: 1px solid #f5f5f5;
      align-items: center;
      gap: 20px;
    }

    .addon-row:last-child { border-bottom: none; }

    .addon-row:nth-child(odd) { background: #fafbfc; }

    .addon-row:hover { background: #f0f4f8; }

    .addon-name {
      font-size: 12.5px;
      font-weight: 700;
      color: #0d0d0d;
    }

    .addon-desc {
      font-size: 11.5px;
      color: #6b7280;
      line-height: 1.45;
    }

    .addon-price {
      font-size: 12.5px;
      font-weight: 800;
      color: var(--text-primary);
      text-align: right;
      white-space: nowrap;
    }

    .setup-fees-bar {
      display: flex;
      align-items: center;
      gap: 0;
      background: #f8fafc;
      border-top: 1px solid #e8e8e8;
    }

    .setup-fee-item {
      flex: 1;
      padding: 14px 28px;
      border-right: 1px solid #e8e8e8;
    }

    .setup-fee-item:last-child { border-right: none; }

    .setup-fee-label {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #8a9ab5;
      margin-bottom: 3px;
    }

    .setup-fee-name {
      font-size: 13px;
      font-weight: 800;
      color: #0d0d0d;
      letter-spacing: -0.01em;
    }

    .setup-fee-value {
      font-size: 14px;
      font-weight: 800;
      color: var(--text-primary);
      margin-top: 1px;
    }

    .plan-card {
      background: #f2f4f7;
      border-radius: 22px;
      padding: 24px 22px 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
      border: 1px solid rgba(0,0,0,0.055);
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .plan-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    }

    .plan-card.featured {
      background: linear-gradient(150deg, #2878b8 0%, #1a5490 100%);
      border-color: transparent;
    }

    
    .plan-top-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
    }

    .plan-icon-box {
      width: 48px; height: 48px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid rgba(107,184,217,0.35);
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    }

    .plan-icon-box img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .plan-card.featured .plan-icon-box {
      border-color: rgba(255,255,255,0.45);
      box-shadow: 0 2px 14px rgba(0,0,0,0.25);
    }

    .plan-card.featured .plan-icon-box svg {
      stroke: rgba(255,255,255,0.9);
    }

    .plan-avatar-stack {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      isolation: isolate;
    }

    .plan-avatar-stack .plan-icon-box { position: relative; }
    .plan-avatar-stack .plan-icon-box:not(:first-child) { margin-left: -14px; }
    .plan-avatar-stack .plan-icon-box:nth-child(1) { z-index: 3; }
    .plan-avatar-stack .plan-icon-box:nth-child(2) { z-index: 2; }
    .plan-avatar-stack .plan-icon-box:nth-child(3) { z-index: 1; }

    .featured-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 20px;
      border: 1.5px solid rgba(107,184,217,0.55);
      color: var(--blue-1);
      white-space: nowrap;
      background: transparent;
      align-self: flex-start;
    }

    .plan-card.featured .featured-badge {
      border-color: rgba(255,255,255,0.45);
      color: rgba(255,255,255,0.9);
    }

    
    .plan-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text-primary);
      text-transform: none;
      margin-bottom: 4px;
    }

    .plan-card.featured .plan-name { color: #ffffff; }

    .plan-promise {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
      font-style: normal;
      border-top: none;
      padding-top: 0;
      margin-top: -6px;
    }

    .plan-card.featured .plan-promise { color: rgba(255,255,255,0.55); }

    
    .plan-price {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 6px;
    }

    .plan-price-value {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 30px;
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1;
      color: var(--text-primary);
    }

    .plan-card.featured .plan-price-value { color: #ffffff; }

    .plan-price-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 1px;
      padding-bottom: 3px;
    }

    .plan-price-period {
      font-size: 10.5px;
      color: var(--text-muted);
      font-weight: 500;
      line-height: 1.35;
      text-align: right;
    }

    .plan-card.featured .plan-price-period { color: rgba(255,255,255,0.5); }

    
    .plan-features-card {
      background: #ffffff;
      border-radius: 14px;
      padding: 14px;
      flex: 1;
    }

    .plan-card.featured .plan-features-card {
      background: rgba(255,255,255,0.12);
    }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 12.5px;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    .plan-card.featured .plan-features li { color: rgba(255,255,255,0.78); }

    .check {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: #e6f4ec;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .plan-card.featured .check { background: rgba(255,255,255,0.2); }

    .check svg { width: 10px; height: 10px; fill: #22c55e; }
    .plan-card.featured .check svg { fill: rgba(255,255,255,0.9); }

    
    .plan-btn {
      display: block;
      text-align: center;
      padding: 13px 20px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: -0.01em;
      text-transform: none;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
      background: linear-gradient(135deg, #5ab5d8 0%, #2471b2 100%);
      color: #ffffff;
    }

    .plan-btn:hover { opacity: 0.88; transform: translateY(-1px); }

    .plan-card.featured .plan-btn {
      background: var(--bg-white);
      color: #1a5490;
    }

    .plan-card.featured .plan-btn:hover { opacity: 0.92; }

    
    
    .motivos-scroll-section {
      background: #f4f6f8;
      padding: 100px 40px;
    }

    .motivos-scroll-sticky {
      max-width: 1100px;
      margin: 0 auto;
    }

    .motivos-scroll-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
      gap: 24px;
    }

    .motivos-scroll-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .motivos-scroll-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 800;
      color: var(--text-primary);
      letter-spacing: -0.03em;
      line-height: 1.15;
    }

    .motivos-scroll-counter {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
      padding-bottom: 6px;
    }

    .motivos-scroll-counter span {
      color: var(--text-primary);
      font-weight: 700;
    }

    .motivos-scroll-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      list-style: none;
      transition: opacity 0.28s ease, transform 0.28s ease;
    }

    .motivos-scroll-list.fading {
      opacity: 0;
      transform: translateY(10px);
    }

    .motivo-scroll-item {
      background: #ffffff;
      border: 1px solid #e8e8e8;
      border-radius: 20px;
      padding: 26px 24px 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: default;
    }

    .motivo-scroll-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    }

    .motivo-card-cat {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue-1);
    }

    .motivo-card-title {
      font-size: 15px;
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text-primary);
      line-height: 1.35;
      letter-spacing: -0.01em;
    }

    .motivo-card-desc {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.65;
      flex: 1;
    }

    .motivo-card-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--blue-1);
      text-decoration: none;
      margin-top: 6px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: gap 0.2s;
    }

    .motivo-card-link:hover { gap: 8px; }

    .motivos-scroll-footer {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    .btn-renovar {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--blue-1);
      border: 1.5px solid var(--blue-1);
      padding: 13px 28px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      letter-spacing: -0.01em;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }

    .btn-renovar:hover { background: var(--blue-1); color: #ffffff; transform: translateY(-1px); }
    .btn-renovar svg { width: 15px; height: 15px; transition: transform 0.5s ease; }
    .btn-renovar.spinning svg { transform: rotate(360deg); }

    
    .faq-section {
      background: #f4f6f8;
      padding: 80px 40px;
    }

    .faq-outer {
      max-width: 1100px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 28px;
      padding: 64px;
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 64px;
      position: relative;
      overflow: hidden;
    }

    
    .faq-outer::before {
      content: 'FAQ';
      position: absolute;
      bottom: -20px;
      left: 20px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 180px;
      font-weight: 900;
      color: rgba(0,0,0,0.04);
      line-height: 1;
      pointer-events: none;
      letter-spacing: -0.04em;
      user-select: none;
    }

    .faq-left {
      position: relative;
      z-index: 1;
    }

    .faq-left-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--text-primary);
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .faq-left-sub {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 36px;
    }

    .faq-contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }

    .faq-contact-icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1.5px solid #e4e4e4;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .faq-contact-icon svg {
      width: 16px; height: 16px;
      stroke: var(--text-secondary);
    }

    .faq-contact-text {
      font-size: 14px;
      color: var(--text-primary);
      font-weight: 500;
    }

    
    .faq-right {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .faq-item {
      background: #f5f6f8;
      border-radius: 16px;
      overflow: hidden;
      transition: background 0.2s;
    }

    .faq-item.open {
      background: #ffffff;
      border: 1px solid #e8e8e8;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }

    .faq-question {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px 22px;
      cursor: pointer;
      user-select: none;
      list-style: none;
    }

    .faq-num {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      min-width: 24px;
    }

    .faq-q-text {
      flex: 1;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.4;
    }

    .faq-chevron {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: #ebebeb;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.3s;
    }

    .faq-item.open .faq-chevron {
      background: var(--blue-1);
      transform: rotate(180deg);
    }

    .faq-chevron svg {
      width: 14px; height: 14px;
      stroke: var(--text-secondary);
      transition: stroke 0.2s;
    }

    .faq-item.open .faq-chevron svg {
      stroke: #ffffff;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s ease;
      padding: 0 22px 0 62px;
    }

    .faq-item.open .faq-answer {
      max-height: 500px;
      padding: 0 22px 20px 62px;
    }

    .faq-answer p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    
    footer {
      background: #0d0d0d;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 60px 40px;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .footer-logo-icon {
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo-icon svg { width: 18px; height: 18px; fill: white; }

    .footer-logo-text {
      font-size: 16px;
      font-weight: 700;
      color: white;
      letter-spacing: -0.02em;
    }

    .footer-links {
      display: flex;
      gap: 32px;
    }

    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: rgba(255,255,255,0.8); }

    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,0.25);
    }

    
    @media (max-width: 900px) {
      .site-nav { padding: 16px 24px; }
      section { padding: 80px 24px; }
      .agents-grid { grid-template-columns: 1fr; }
      .agent-photo { height: 260px; }
      .how-sticky-wrap { grid-template-columns: 1fr; gap: 48px; }
      .how-sticky-header { position: static; }
      .how-visual { position: static; height: auto; min-height: 300px; }
      .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .footer-inner { flex-direction: column; gap: 32px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }

    @media (max-width: 600px) {
      .pricing-grid { grid-template-columns: 1fr; }
      .hero { grid-template-columns: 1fr; }
      .hero-content { padding: 120px 24px 60px; }
      .hero-image-wrap { height: 60vw; }
    }
