/* ═══════════════════════════════════════════════
       PC-STRUB — LANDING PAGE STYLES
    ═══════════════════════════════════════════════ */

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

    :root {
      --bg-main: #050505;
      --bg-secondary: #0A0A0A;
      --bg-card: #121212;
      --text-primary: #F5F5F7;
      --text-secondary: #86868B;
      --text-muted: #424245;
      --accent: #2997FF;
      --accent-glow: rgba(41, 151, 255, 0.5);
      --success: #32D74B;
      --border-subtle: rgba(255,255,255,0.08);
      --border-strong: rgba(255,255,255,0.15);
      --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
      --font-body: 'Inter', -apple-system, sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--bg-main);
      color: var(--text-primary);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-secondary); }
    ::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }

    ::selection {
      background: rgba(41, 151, 255, 0.3);
      color: var(--text-primary);
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

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

    @media (min-width: 768px) {
      .container { padding: 0 48px; }
    }
    @media (min-width: 1024px) {
      .container { padding: 0 96px; }
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes glowPulse {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 0.7; }
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── NAVBAR ─── */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .navbar.scrolled {
      background: rgba(5, 5, 5, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }
    .nav-logo:hover .nav-logo-icon {
      transform: scale(1.1);
    }
    .nav-logo-icon svg {
      width: 16px;
      height: 16px;
      color: white;
    }
    .nav-logo-text {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: white;
    }
    .nav-links {
      display: none;
      align-items: center;
      gap: 32px;
    }
    @media (min-width: 768px) {
      .nav-links { display: flex; }
    }
    .nav-link {
      font-size: 14px;
      color: var(--text-secondary);
      transition: color 0.3s ease;
    }
    .nav-link:hover { color: white; }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: white;
      color: black;
      border-radius: 9999px;
      padding: 8px 24px;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .nav-cta:hover { background: #e5e5e5; }
    .nav-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }
    .nav-cta:hover::before { transform: translateX(100%); }

    /* Mobile menu toggle */
    .nav-mobile-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }
    @media (min-width: 768px) {
      .nav-mobile-toggle { display: none; }
    }
    .nav-mobile-toggle svg {
      width: 22px;
      height: 22px;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: rgba(10,10,10,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 24px;
      z-index: 99;
      animation: fadeIn 0.2s ease-out;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block;
      padding: 14px 0;
      font-size: 16px;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border-subtle);
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: white; }
    .mobile-menu a:last-child {
      color: var(--accent);
      font-weight: 500;
      border-bottom: none;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-image: url('https://images.unsplash.com/photo-1770733126996-76bc593c50df?crop=entropy&cs=srgb&fm=jpg&ixid=M3w4NTYxODh8MHwxfHNlYXJjaHwxfHxtYWNybyUyMGNvbXB1dGVyJTIwbW90aGVyYm9hcmQlMjBoYXJkd2FyZSUyMGJsdWUlMjBsaWdodHxlbnwwfHx8fDE3NzMzMTc1MDF8MA&ixlib=rb-4.1.0&q=85');
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.9) 60%, #050505 100%);
      z-index: 1;
    }
    .hero-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(41, 151, 255, 0.12) 0%, transparent 60%);
      pointer-events: none;
      z-index: 1;
      animation: glowPulse 4s ease-in-out infinite;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      max-width: 900px;
    }
    .hero-label {
      font-family: var(--font-heading);
      text-transform: uppercase;
      letter-spacing: 0.25em;
      font-size: 12px;
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 24px;
    }
    .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(36px, 7vw, 72px);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1.05;
      color: white;
      margin-bottom: 24px;
    }
    .hero-subtitle {
      font-size: 16px;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }
    @media (min-width: 768px) {
      .hero-subtitle { font-size: 18px; }
    }
    .hero-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    @media (min-width: 640px) {
      .hero-buttons { flex-direction: row; justify-content: center; }
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: white;
      color: black;
      border-radius: 9999px;
      padding: 14px 32px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .btn-primary:hover { background: #e5e5e5; }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }
    .btn-primary:hover::before { transform: translateX(100%); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      color: white;
      border-radius: 9999px;
      padding: 14px 32px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: all 0.3s ease;
      border: 1px solid rgba(255,255,255,0.05);
      cursor: pointer;
      backdrop-filter: blur(12px);
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.2); }

    .btn-primary svg, .btn-secondary svg {
      width: 16px;
      height: 16px;
    }

    /* ─── SECTION SHARED ─── */
    .section {
      padding: 96px 0;
    }
    @media (min-width: 768px) {
      .section { padding: 128px 0; }
    }
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    }
    .section-label {
      font-family: var(--font-heading);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 12px;
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1.1;
      color: white;
    }

    /* ─── SERVICES ─── */
    .services-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
    }
    .service-card {
      position: relative;
      overflow: hidden;
      background: rgba(24, 24, 27, 0.5);
      border: 1px solid var(--border-subtle);
      border-radius: 24px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .service-card:hover::before { opacity: 1; }
    .service-card:hover {
      border-color: rgba(255,255,255,0.2);
      transform: translateY(-4px);
    }
    .service-card.span-2 {
      grid-column: span 1;
    }
    @media (min-width: 768px) {
      .service-card.span-2 { grid-column: span 2; }
    }
    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: rgba(41, 151, 255, 0.1);
      border: 1px solid rgba(41, 151, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: all 0.4s ease;
    }
    .service-card:hover .service-icon {
      background: rgba(41, 151, 255, 0.2);
      border-color: rgba(41, 151, 255, 0.4);
      box-shadow: 0 0 20px rgba(41, 151, 255, 0.15);
    }
    .service-icon svg {
      width: 22px;
      height: 22px;
      color: var(--accent);
    }
    .service-card h3 {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      color: white;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }
    .service-card p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
      flex: 1;
      position: relative;
      z-index: 1;
    }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--accent);
      font-size: 14px;
      font-weight: 500;
      margin-top: 24px;
      transition: color 0.3s ease;
      position: relative;
      z-index: 1;
    }
    .service-link:hover { color: #5EB0FF; }
    .service-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.3s ease;
    }
    .service-link:hover svg { transform: translateX(4px); }

    /* ─── ABOUT ─── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 64px;
      align-items: center;
    }
    @media (min-width: 1024px) {
      .about-grid { grid-template-columns: 1fr 1fr; }
    }
    .about-text p {
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .about-text p:last-of-type { margin-bottom: 32px; }
    .about-location {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-secondary);
      font-size: 14px;
    }
    .about-location svg {
      width: 16px;
      height: 16px;
      color: var(--accent);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    @media (max-width: 639px) {
      .stats-grid { grid-template-columns: 1fr; }
    }
    .stat-card {
      background: rgba(24, 24, 27, 0.5);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .stat-card:hover { border-color: rgba(255,255,255,0.2); }
    .stat-card::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
      transition: transform 0.6s ease;
    }
    .stat-card:hover::after { transform: translateX(50%) translateY(50%); }
    .stat-card svg {
      width: 20px;
      height: 20px;
      color: var(--accent);
      margin: 0 auto 12px;
    }
    .stat-value {
      font-family: var(--font-heading);
      font-size: 30px;
      font-weight: 700;
      color: white;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
      position: relative;
      z-index: 1;
    }
    .stat-label {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      position: relative;
      z-index: 1;
    }

    /* ─── CONTACT ─── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 64px;
    }
    @media (min-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr 1fr; }
    }
    .contact-info-title {
      margin-bottom: 24px;
    }
    .contact-description {
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 40px;
    }
    .contact-divider {
      height: 1px;
      background: rgba(255,255,255,0.06);
      margin-bottom: 40px;
    }
    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .contact-detail-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 12px;
      background: rgba(24, 24, 27, 0.8);
      border: 1px solid var(--border-subtle);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-detail-icon svg {
      width: 16px;
      height: 16px;
      color: var(--accent);
    }
    .contact-detail-label {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 2px;
    }
    .contact-detail-value {
      font-size: 14px;
      color: white;
    }

    /* Form */
    .contact-form-card {
      background: rgba(24, 24, 27, 0.3);
      border: 1px solid var(--border-subtle);
      border-radius: 24px;
      padding: 32px;
    }
    @media (min-width: 768px) {
      .contact-form-card { padding: 40px; }
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }
    @media (min-width: 640px) {
      .form-row { grid-template-columns: 1fr 1fr; }
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .form-group.full-width {
      margin-bottom: 20px;
    }
    .form-label {
      font-size: 11px;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 500;
    }
    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      background: rgba(24, 24, 27, 0.5);
      border: 1px solid rgba(255,255,255,0.1);
      color: white;
      font-family: var(--font-body);
      font-size: 14px;
      padding: 14px 16px;
      border-radius: 12px;
      outline: none;
      transition: all 0.3s ease;
      -webkit-appearance: none;
    }
    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #52525b;
    }
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: rgba(41, 151, 255, 0.5);
      box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.1);
    }
    .form-select {
      cursor: pointer;
      background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E\");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 44px;
    }
    .form-select option {
      background: #1a1a1a;
      color: white;
    }
    .form-textarea {
      resize: none;
      min-height: 130px;
    }
    .btn-submit {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: white;
      color: black;
      border-radius: 9999px;
      padding: 14px 32px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      margin-top: 4px;
    }
    .btn-submit:hover { background: #e5e5e5; }
    .btn-submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    .btn-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }
    .btn-submit:hover::before { transform: translateX(100%); }
    .btn-submit svg {
      width: 16px;
      height: 16px;
    }

    /* Spinner */
    .spinner {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(0,0,0,0.2);
      border-top-color: black;
      border-radius: 50%;
      animation: spin 0.6s linear infinite;
    }

    /* Success state */
    .success-state {
      text-align: center;
      padding: 40px 20px;
      animation: scaleIn 0.5s ease-out;
    }
    .success-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(50, 215, 75, 0.1);
      border: 1px solid rgba(50, 215, 75, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }
    .success-icon svg {
      width: 32px;
      height: 32px;
      color: var(--success);
    }
    .success-title {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 700;
      color: white;
      margin-bottom: 12px;
    }
    .success-text {
      color: var(--text-secondary);
      margin-bottom: 32px;
    }
    .success-reset {
      background: none;
      border: none;
      color: var(--accent);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: color 0.3s;
    }
    .success-reset:hover { color: #5EB0FF; }

    /* ─── TOAST ─── */
    .toast-container {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 200;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .toast {
      background: #1a1a1a;
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: 14px 20px;
      color: white;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
      animation: fadeInUp 0.3s ease-out;
      max-width: 380px;
    }
    .toast.error { border-color: rgba(255, 69, 58, 0.3); }
    .toast.success { border-color: rgba(50, 215, 75, 0.3); }
    .toast svg { width: 18px; height: 18px; flex-shrink: 0; }
    .toast.success svg { color: var(--success); }
    .toast.error svg { color: #FF453A; }

    /* ─── FOOTER ─── */
    .footer {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 48px 0;
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    @media (min-width: 768px) {
      .footer-inner {
        flex-direction: row;
        justify-content: space-between;
      }
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-logo-icon {
      width: 24px;
      height: 24px;
      border-radius: 6px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .footer-logo-icon svg {
      width: 12px;
      height: 12px;
      color: white;
    }
    .footer-logo-text {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 600;
      color: white;
    }
    .footer-info {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-size: 12px;
      color: var(--text-muted);
    }
    .footer-info svg {
      width: 12px;
      height: 12px;
    }
    .footer-info-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-sep {
      width: 1px;
      height: 12px;
      background: rgba(255,255,255,0.1);
    }
    .footer-copy {
      font-size: 12px;
      color: #333;
    }


/* ─── TRUST, PRICING, FAQ & CONTACT EXTENSIONS ─── */
.section-pad { padding-top: 96px; padding-bottom: 96px; }
.section-heading-centered { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-intro { margin-top: 18px; color: var(--text-secondary); line-height: 1.75; }

.trust-strip { border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); background: rgba(255,255,255,.018); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 24px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,.06); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: #fff; font-family: var(--font-heading); font-size: 17px; margin-bottom: 4px; }
.trust-item span { color: var(--text-muted); font-size: 12px; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.price-card { padding: 30px; border: 1px solid var(--border-subtle); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); transition: transform .3s ease, border-color .3s ease; }
.price-card:hover { transform: translateY(-4px); border-color: rgba(41,151,255,.34); }
.price-card-wide { grid-column: 1 / -1; }
.price-kicker { display: inline-block; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 700; margin-bottom: 14px; }
.price-card h3 { color: #fff; font-family: var(--font-heading); font-size: 20px; margin-bottom: 14px; }
.price { color: #fff; font-family: var(--font-heading); font-size: clamp(26px, 3vw, 38px); font-weight: 700; margin-bottom: 14px; }
.price-card p { color: var(--text-secondary); line-height: 1.7; }
.price-card .service-link { margin-top: 20px; }

.faq-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 72px; align-items: start; }
.faq-intro { max-width: 440px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border-subtle); border-radius: 16px; background: rgba(255,255,255,.025); overflow: hidden; }
.faq-item summary { position: relative; cursor: pointer; list-style: none; color: #fff; font-family: var(--font-heading); font-weight: 600; padding: 22px 56px 22px 22px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 22px; top: 17px; color: var(--accent); font-size: 27px; font-weight: 300; transition: transform .25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-secondary); line-height: 1.7; padding: 0 22px 22px; }

.contact-detail-value a, .footer a { color: inherit; text-decoration: none; transition: color .2s ease; }
.contact-detail-value a:hover, .footer a:hover { color: var(--accent); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn-whatsapp { display: inline-flex; align-items: center; justify-content: center; border-radius: 9999px; padding: 14px 25px; color: #fff; background: #1f9d55; font-size: 14px; font-weight: 600; text-decoration: none; transition: transform .25s ease, filter .25s ease; }
.btn-whatsapp:hover { transform: translateY(-2px); filter: brightness(1.08); }
.form-note { margin: 2px 0 14px; color: var(--text-muted); font-size: 11px; line-height: 1.5; }

.footer-inner { flex-wrap: wrap; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; font-size: 12px; color: var(--text-muted); }
.footer-copy { width: 100%; text-align: center; }

.mobile-contact-bar { display: none; }

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.06); }
  .faq-layout { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 64px; }
  .section-pad { padding-top: 72px; padding-bottom: 72px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-wide { grid-column: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 20px 10px; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn-primary, .contact-actions .btn-whatsapp { width: 100%; }
  .mobile-contact-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 250; display: grid; grid-template-columns: 1fr 1fr; background: rgba(8,8,9,.96); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,.1); padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); gap: 8px; }
  .mobile-contact-bar a { display: flex; align-items: center; justify-content: center; min-height: 44px; border-radius: 9999px; color: #fff; text-decoration: none; font-size: 13px; font-weight: 700; }
  .mobile-contact-bar a:first-child { background: var(--accent); }
  .mobile-contact-bar a:last-child { background: #1f9d55; }
}
