:root{
  /* Ivory & Ink base */
  --bg: #F7F4EE;          /* warm ivory */
  --surface: #FFFFFF;     /* cards */
  --ink: #0B1220;         /* headings */
  --text: #0B1220;        /* main text */
  --muted: #5B6472;       /* secondary text */
  --border: #E8E2D8;      /* soft border */

  /* Brand accent (from logo) */
  --accent: #F8D050;      /* gold */
  --accent-ink: #1A1300;  /* readable text on gold */
  --accent-hover: #E9BF3D;

  /* Status */
  --success: #16A34A;
  --error: #DC2626;

  --radius-card: 16px;
  --radius-btn: 12px;

  --shadow-sm: 0 1px 2px rgba(11,18,32,0.06);
  --shadow-md: 0 16px 44px rgba(11,18,32,0.10);
  --shadow-lg: 0 20px 60px rgba(11,18,32,0.12);
  --shadow-card: 0 2px 8px rgba(11,18,32,0.08), 0 1px 2px rgba(11,18,32,0.06);
  --shadow-card-hover: 0 8px 24px rgba(11,18,32,0.12), 0 2px 4px rgba(11,18,32,0.08);
  }
  
  *{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

  html, body { height:100%; }

  /* Skip Link */
  .skip-link{
    position:absolute;
    top:-40px;
    left:20px;
    background:var(--ink);
    color:#fff;
    padding:8px 16px;
    text-decoration:none;
    border-radius:4px;
    z-index:1000;
    font-weight:500;
  }
  .skip-link:focus{
    top:20px;
    outline:2px solid var(--accent);
    outline-offset:2px;
  }

  body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: var(--text);
    line-height:1.7;
    min-height: 100vh;
    background:
      radial-gradient(900px 520px at 15% 10%, rgba(248,208,80,0.22), transparent 60%),
      radial-gradient(700px 420px at 85% 18%, rgba(11,18,32,0.08), transparent 62%),
      radial-gradient(900px 520px at 70% 85%, rgba(248,208,80,0.12), transparent 60%),
      linear-gradient(180deg, #FBFAF7 0%, var(--bg) 65%, #F3EFE6 100%);
  }
  
  /* Ensure background is visible */
  html {
    background-color: var(--bg);
  }
  
  /* Mobile: use scroll instead of fixed for performance */
  @media (max-width: 1024px) {
    body {
      background-attachment: scroll;
    }
  }

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }
  *,
  *::before,
  *::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
  }
}
  
  /* Links */
  a{ 
    color:var(--accent);
    transition:color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  a:hover{ 
    text-decoration:underline;
  }
  a:focus{
    outline:2px solid var(--accent);
    outline-offset:2px;
    border-radius:4px;
  }
  
  /* Navigation */
  .nav{
    border-bottom:1px solid var(--border);
    background:rgba(247,244,238,0.95);
    backdrop-filter:blur(10px);
    position:sticky;
    top:0;
    z-index:100;
  }
  .nav-wrap{
    max-width:980px;
    margin:0 auto;
    padding:14px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }
  .nav-logo-img{
    height:40px;
    width:auto;
    display:block;
  }

  .nav-logo span{
    font-weight:700;
    background:linear-gradient(135deg, var(--ink) 0%, #374151 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
  }
  .nav-links{
    display:flex;
    gap:22px;
    align-items:center;
  }
  .nav-links a{
    color:var(--ink);
    text-decoration:none;
    transition:color .2s;
    font-weight:500;
  }
  .nav-links a:hover,
  .nav-links a.active{
    color:var(--accent);
  }
  .nav-toggle{
    display:none;
    flex-direction:column;
    gap:4px;
    background:none;
    border:none;
    cursor:pointer;
    padding:8px;
  }
  .nav-toggle span{
    width:24px;
    height:2px;
    background:var(--ink);
    transition:all .3s;
  }
  
  /* Main Content */
  .main-content {
    min-height: 100vh;
  }

  .wrap{
    max-width:980px;
    margin:0 auto;
    padding:48px 20px 28px;
  }

  /* Ultra-Compact Section Headers */
  .section-header {
    text-align: center;
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }

  .section-header p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.4;
  }

  /* Ultra-Compact Hero Section */
  .hero-services {
    padding: 50px 20px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(248,208,80,0.12) 0%, rgba(248,208,80,0.06) 100%);
  }

  .hero-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .hero-services h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 550px;
    margin: 0 auto 24px;
    line-height: 1.4;
  }

  /* Service Tabs Section */
  .service-tabs-section {
    margin: 40px 0;
  }

  /* Professional Tab-Style Service Selector */
  .service-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .tab-btn {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
    box-shadow: var(--shadow-sm);
  }

  .tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
  }

  .tab-btn.active {
    background: var(--surface);
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: var(--shadow-md);
  }

  .tab-btn.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 12px 12px 0 0;
  }

  .tab-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    background: rgba(248,208,80,0.15);
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
  }

  .tab-btn.active .tab-number {
    color: var(--accent-ink);
    background: var(--accent);
  }

  .tab-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .tab-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    transition: color 0.2s ease;
  }

  .tab-info p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
  }

  /* Ultra-Compact Service Details Section */
  .service-details {
    padding: 40px 20px;
  }

  .service-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
  }

  .service-content.active {
    display: block;
  }

  .service-header {
    text-align: center;
    margin-bottom: 24px;
  }

  .service-badge {
    display: inline-block;
    padding: 3px 6px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .service-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }

  .service-header p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    max-width: 550px;
    margin: 0 auto;
  }

  .service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .feature-row {
    padding: 12px 16px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .feature-row strong {
    font-weight: 600;
    color: var(--ink);
    font-size: 0.9rem;
  }

  .feature-row.pricing {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(248,208,80,0.08) 100%);
    border-color: var(--accent);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
  }

  .pricing-btn {
    background: var(--accent);
    color: var(--accent-ink);
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .pricing-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
  }

  .packages, .plans {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }

  .packages span, .plans span {
    padding: 6px 12px;
    background: rgba(248,208,80,0.15);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .packages span.featured, .plans span.featured {
    background: var(--accent);
    color: var(--accent-ink);
  }

  .packages span.urgent, .plans span.urgent {
    background: #DC2626;
    color: #ffffff;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
  }

  .service-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .service-feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .service-feature li {
    padding: 8px 0;
    color: var(--muted);
    position: relative;
    padding-left: 20px;
  }

  .service-feature li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
  }

  /* Package Cards */
  .package-cards, .plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .package-card, .plan-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
  }

  .package-card:hover, .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
  }

  .package-card.featured, .plan-card.featured {
    border-color: var(--accent);
    background: rgba(252,211,77,0.12);
    position: relative;
  }

  .package-card.featured::before, .plan-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--accent-ink);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .plan-card.urgent {
    border-color: #DC2626;
    background: rgba(220,38,38,0.03);
  }

  .plan-card.urgent::before {
    content: "Emergency";
    background: #DC2626;
  }

  .package-card h4, .plan-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
  }

  .package-duration, .plan-type {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
  }

  .package-card ul, .plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .package-card li, .plan-card li {
    padding: 6px 0;
    color: var(--muted);
    font-size: 0.875rem;
    position: relative;
    padding-left: 16px;
  }

  .package-card li::before, .plan-card li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
  }

  /* Process Steps */
  .process-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .step {
    flex: 1;
    min-width: 200px;
    text-align: center;
  }

  .step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--ink);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .step h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
  }

  .step p {
    color: var(--muted);
    font-size: 0.875rem;
    margin: 0;
  }

  /* SLA Options */
  .sla-options {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .sla-option {
    flex: 1;
    min-width: 120px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
  }

  .sla-option h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
  }

  .sla-option p {
    color: var(--muted);
    font-size: 0.875rem;
    margin: 0;
  }

  /* Pricing Cards */
  .pricing-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
  }

  .pricing-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .pricing-card p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 0.875rem;
  }

  .pricing-note {
    font-style: italic;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .pricing-btn {
    background: var(--accent);
    color: var(--accent-ink);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  /* Ultra-Compact Comparison Cards */
  .comparison-section {
    padding: 40px 20px;
    background: transparent;
  }

  .comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
  }

  .comparison-card {
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 20px;
    transition: all 0.2s ease;
    text-align: center;
  }

  .comparison-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
  }

  .card-header {
    margin-bottom: 16px;
  }

  .card-badge {
    display: inline-block;
    padding: 3px 6px;
    background: var(--accent);
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .comparison-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
  }

  .card-header p {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
  }

  .card-features {
    margin-bottom: 16px;
  }

  .card-features div {
    padding: 4px 0;
    font-size: 0.8rem;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
  }

  .card-features div:last-child {
    border-bottom: none;
  }

  .card-features strong {
    color: var(--ink);
  }

  .card-btn {
    background: var(--accent);
    color: var(--accent-ink);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
  }

  .card-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
  }

  /* Process Timeline */
  .process-timeline {
    padding: 80px 20px;
  }

  .timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .timeline-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
  }

  .timeline-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
  }

  .timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
  }

  .timeline-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .timeline-step p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
  }

  /* Ultra-Compact FAQ Grid */
  .faq-section {
    padding: 40px 20px;
    background: transparent;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-item {
    background: var(--surface);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
  }

  .faq-item:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
  }

  .faq-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
  }

  .faq-item p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
  }

  /* Ultra-Compact CTA Section */
  .cta-services {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(248,208,80,0.12) 0%, rgba(248,208,80,0.06) 100%);
    color: var(--ink);
  }

  .cta-content {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
  }

  .cta-services h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }

  .cta-services p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.4;
  }

  .cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  .cta-primary {
    background: var(--accent);
    color: var(--accent-ink);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
  }

  .cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(252,211,77,0.5);
  }

  .cta-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
  }

  .cta-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
  }

  .cta-trust {
    opacity: 0.8;
    font-size: 0.8rem;
  }

  /* Ultra-Compact Mobile Responsiveness */
  @media (max-width: 768px) {
    .hero-services {
      padding: 40px 20px 32px;
    }

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

    .hero-description {
      font-size: 1rem;
    }

    .service-tabs {
      flex-direction: column;
      gap: 8px;
      margin-bottom: 32px;
    }

    .tab-btn {
      min-width: 100%;
      max-width: 100%;
      padding: 14px 16px;
    }

    .service-details {
      padding: 32px 20px;
    }

    .service-header h2 {
      font-size: 1.6rem;
    }

    .feature-row.pricing {
      flex-direction: column;
      gap: 10px;
      align-items: stretch;
      padding: 12px 16px;
    }

    .comparison-cards {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .comparison-card {
      padding: 16px;
    }

    .faq-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .faq-item {
      padding: 14px;
    }

    .cta-services {
      padding: 32px 20px;
    }

    .cta-services h2 {
      font-size: 1.6rem;
    }

    .cta-actions {
      flex-direction: column;
      gap: 10px;
    }

    .cta-primary,
    .cta-secondary {
      width: 100%;
      text-align: center;
      padding: 14px 20px;
    }
  }

  @media (max-width: 480px) {
    .hero-services h1 {
      font-size: 1.6rem;
    }

    .section-header h2 {
      font-size: 1.5rem;
    }

    .service-header h2 {
      font-size: 1.4rem;
    }

    .cta-services h2 {
      font-size: 1.4rem;
    }

    .comparison-card {
      padding: 14px;
    }

    .faq-item {
      padding: 12px;
    }

    .tab-btn {
      padding: 12px 14px;
    }

    .tab-number {
      font-size: 0.7rem;
      padding: 3px 6px;
    }

    .tab-info h3 {
      font-size: 0.9rem;
    }

    .tab-info p {
      font-size: 0.75rem;
    }
  }
  
  /* Hero Section */
  /* Ultra-Compact Hero Styles */
  .hero{
    padding:40px 20px;
    border:1px solid var(--border);
    background:var(--surface);
    border-radius:var(--radius-card);
    box-shadow:var(--shadow-md);
    margin-bottom:60px;
  }
  .hero-home{
    padding:60px 32px;
    text-align:center;
    box-shadow:var(--shadow-lg);
  }
  .hero-sub{
    font-size:18px;
    line-height:1.6;
    margin:20px auto 0;
  }
  .badge{
    display:inline-block;
    font-weight:700;
    letter-spacing:.15em;
    font-size:11px;
    color:var(--muted);
    border:1px solid var(--border);
    background:rgba(248,208,80,0.1);
    padding:8px 10px;
    border-radius:20px;
    margin-bottom:16px;
  }
  .trust-badges{
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
    margin:24px 0 0;
  }
  .trust-badge{
    display:inline-block;
    padding:6px 12px;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:16px;
    font-size:13px;
    color:var(--muted);
    font-weight:500;
    transition:all 0.2s ease;
  }
  .trust-badge:hover{
    background:rgba(248,208,80,0.1);
    border-color:var(--accent);
  }
  .hero-actions{
    margin-top:32px;
  }
  h1{
    margin:10px 0 10px;
    font-size:44px;
    line-height:1.15;
    font-weight:700;
    letter-spacing:-0.02em;
    color:var(--ink);
  }
  h2{
    font-size:32px;
    margin:32px 0 16px;
    font-weight:600;
    letter-spacing:-0.01em;
    color:var(--ink);
  }
  h3{
    font-size:20px;
    margin:24px 0 12px;
    font-weight:600;
    color:var(--ink);
  }
  h4{
    font-size:16px;
    margin:16px 0 8px;
    font-weight:600;
    color:var(--ink);
  }
  .sub{
    margin:0;
    color:var(--muted);
    font-size:18px;
  }
  .trust-line{
    margin:14px 0 0;
    color:var(--muted);
    font-size:14px;
  }
  
  /* Buttons */
  .actions{
    gap:12px;
    margin-top:22px;
    flex-wrap:wrap;
  }
  .btn{
    border:1px solid var(--border);
    color:var(--ink);
    display:inline-block;
    padding:12px 24px;
    border-radius:var(--radius-btn);
    background:var(--surface);
    text-decoration:none;
    transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor:pointer;
    font-size:16px;
    font-weight:500;
    box-shadow:var(--shadow-sm);
    min-height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .btn:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow-md);
    text-decoration:none;
    border-color: var(--accent);
  }
  .btn:focus{
    outline:2px solid var(--accent);
    outline-offset:2px;
  }
  .btn.primary{
    background: var(--accent);
    color: var(--accent-ink);
    border-color: transparent;
    font-weight: 700;
  }
  .btn.primary:hover{
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform:translateY(-2px);
  }
  .btn.primary:focus{
    outline-color:var(--accent);
  }
  .btn.accent{
    background:var(--accent);
    border-color:var(--accent);
    color:var(--accent-ink);
  }
  .btn:disabled{
    opacity:.5;
    cursor:not-allowed;
    transform:none;
    box-shadow:none;
  }
  
  /* Service Cards */
  /* Ultra-Compact Cards */
  .cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:32px 0;
  }
  .cards-featured{
    margin-top:32px;
  }
  .card{
    padding:20px;
    border-radius:var(--radius-card);
    border:1px solid var(--border);
    background:var(--surface);
    transition:all 0.2s ease;
    box-shadow:var(--shadow-card);
  }
  .card-service{
    cursor:default;
    display:flex;
    flex-direction:column;
    padding:28px 24px;
    height:100%;
  }
  .card:hover{
    transform:translateY(-4px) scale(1.01);
    box-shadow:var(--shadow-card-hover);
    border-color:var(--accent);
  }
  .card-service:hover{
    background:var(--surface);
    border-color:var(--accent);
  }
  .card-header{
    margin-bottom:12px;
  }
  .card-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border-radius:8px;
    background:rgba(248,208,80,0.15);
    color:var(--accent);
    font-weight:700;
    font-size:14px;
    margin-bottom:16px;
  }
  .card h3{
    margin:0 0 6px;
    font-size:18px;
  }
  .card-oneliner{
    margin:0 0 12px;
    color:var(--muted);
    font-size:14px;
    line-height:1.5;
  }
  .card-bestfor{
    margin:0 0 auto;
    font-size:13px;
    color:var(--muted);
    padding-top:16px;
    border-top:1px solid var(--border);
  }
  .card-footer{
    margin-top:20px;
  }
  .card-link{
    color:var(--accent);
    text-decoration:none;
    font-weight:500;
    font-size:14px;
    transition:all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display:inline-flex;
    align-items:center;
    gap:4px;
  }
  .card-link:hover{
    text-decoration:none;
    gap:8px;
    color:var(--accent-hover);
  }
  .card-link:focus{
    outline:2px solid var(--accent);
    outline-offset:2px;
    border-radius:4px;
  }
  
  /* Section Headers */
  .section-header{
    text-align:center;
    margin-bottom:56px;
  }
  .section-intro{
    font-size:18px;
    color:var(--muted);
    margin-top:16px;
    max-width:60ch;
    margin-left:auto;
    margin-right:auto;
    line-height:1.7;
  }
  
  /* Ultra-Compact Section Dividers */
  .section-divider{
    height:1px;
    background:linear-gradient(to right, transparent, var(--border), transparent);
    margin:50px 0;
    border:none;
  }
  
  /* Value Props */
  /* Ultra-Compact Value Section */
  .section-values{
    margin:50px 0;
  }
  .value-props{
    margin:50px 0;
  }
  .value-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:24px;
  }
  .value-item{
    padding:28px 24px;
    border:1px solid var(--border);
    border-radius:var(--radius-card);
    background:var(--surface);
    box-shadow:var(--shadow-card);
    position:relative;
    transition:all 0.2s ease;
  }
  .value-item:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow-card-hover);
    border-color:var(--accent);
  }
  .value-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    border-radius:6px;
    background:rgba(248,208,80,0.15);
    color:var(--accent);
    font-weight:700;
    font-size:13px;
    margin-bottom:16px;
  }
  .value-item h3{
    margin-top:0;
    margin-bottom:12px;
    font-size:18px;
  }
  .value-item p{
    margin:0;
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
  }
  
  /* Process Steps */
  /* Ultra-Compact Process Section */
  .section-process{
    margin:50px 0;
  }
  .process{
    margin:50px 0;
  }
  .process-steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:20px;
    margin-top:32px;
  }
  .step{
    text-align:center;
    padding:28px 20px;
    border:1px solid var(--border);
    border-radius:var(--radius-card);
    background:var(--surface);
    box-shadow:var(--shadow-card);
    transition:all 0.2s ease;
  }
  .step:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow-card-hover);
    border-color:var(--accent);
  }
  .step-number{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(248,208,80,0.15);
    color:var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
    margin:0 auto 16px;
    box-shadow:0 2px 8px rgba(11,18,32,0.15);
  }
  .step h3{
    margin-top:0;
    margin-bottom:12px;
    font-size:16px;
  }
  .step p{
    margin:0;
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
  }
  
  /* Proof Section */
  /* Ultra-Compact Proof Section */
  .section-proof{
    margin:50px 0;
  }
  .proof{
    margin:50px 0;
    padding:32px 24px;
    border:1px solid var(--border);
    border-radius:var(--radius-card);
    background:var(--surface);
    box-shadow:var(--shadow-card);
  }
  .proof-content{
    max-width:650px;
    margin:0 auto;
    text-align:center;
  }
  .proof-intro{
    font-size:16px;
    color:var(--muted);
    margin:12px 0 24px;
    line-height:1.6;
  }
  .proof-list{
    list-style:none;
    padding:0;
    margin:0;
    text-align:left;
  }
  .proof-list li{
    display:flex;
    gap:16px;
    padding:16px 0;
    border-bottom:1px solid var(--border);
    transition:all 0.2s ease;
  }
  .proof-list li:hover{
    padding-left:4px;
  }
  .proof-list li:last-child{
    border-bottom:none;
  }
  .proof-icon{
    flex-shrink:0;
    width:24px;
    height:24px;
    border-radius:50%;
    background:rgba(248,208,80,0.15);
    color:var(--accent);
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
  }
  .proof-list li div{
    flex:1;
  }
  .proof-list li strong{
    display:block;
    color:var(--ink);
    margin-bottom:4px;
    font-weight:600;
    font-size:15px;
  }
  .proof-list li span{
    display:block;
    color:var(--muted);
    font-size:13px;
    line-height:1.5;
  }
  
  /* Ultra-Compact CTA Section */
  .cta-section{
    margin:50px 0;
    padding:48px 32px;
    text-align:center;
    border:1px solid var(--border);
    border-radius:var(--radius-card);
    background:linear-gradient(180deg, rgba(248,208,80,0.12), rgba(248,208,80,0.06));
    box-shadow:var(--shadow-lg);
  }
  .cta-final{
    padding:56px 40px;
  }
  .cta-content{
    max-width:550px;
    margin:0 auto;
  }
  .cta-section h2{
    margin-top:0;
    margin-bottom:16px;
    font-size:2rem;
  }
  .cta-section p{
    font-size:1.1rem;
    color:var(--muted);
    margin-bottom:32px;
    line-height:1.6;
  }
  
  /* Ultra-Compact Page Hero */
  .page-hero{
    margin-bottom:32px;
    text-align:center;
    padding:40px 20px;
  }
  
  /* Ultra-Compact Service Sections */
  .service-section{
    margin:40px 0;
    padding:24px;
    border:1px solid var(--border);
    border-radius:12px;
    background:var(--surface);
    box-shadow:var(--shadow-sm);
  }
  .service-content{
    margin-top:24px;
  }
  .service-block{
    margin-bottom:32px;
  }
  .service-block:last-child{
    margin-bottom:0;
  }
  .service-block ul{
    margin:12px 0;
    padding-left:24px;
  }
  .service-block li{
    margin:8px 0;
    color:var(--muted);
  }
  .package{
    margin:16px 0;
    padding:20px;
    border-left:3px solid var(--accent);
    background:rgba(252,211,77,0.1);
    border-radius:12px;
  }
  .cta-inline{
    margin-top:16px;
  }
  .cta-inline a{
    color:var(--accent);
    text-decoration:none;
    font-weight:500;
    transition:all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .cta-inline a:hover{
    color:#1d4ed8;
  }
  .cta-inline a:focus{
    outline:2px solid var(--accent);
    outline-offset:2px;
    border-radius:4px;
  }
  
  /* Ultra-Compact Decision Helper */
  .decision-helper{
    margin:40px 0;
  }
  .decision-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:24px;
  }
  .decision-item{
    padding:24px;
    border:1px solid var(--border);
    border-radius:var(--radius-card);
    background:var(--surface);
    text-align:center;
    box-shadow:var(--shadow-sm);
  }
  .decision-item h3{
    margin-top:0;
  }
  
  /* Ultra-Compact Engagement Models */
  .engagement-models{
    margin:40px 0;
  }
  .model-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:24px;
  }
  .model-item{
    padding:24px;
    border:1px solid var(--border);
    border-radius:var(--radius-card);
    background:var(--surface);
    box-shadow:var(--shadow-sm);
  }
  
  /* FAQ */
  .faq-category{
    margin-bottom:48px;
  }
  .faq-item{
    margin-bottom:24px;
    padding:20px;
    border:1px solid var(--border);
    border-radius:var(--radius-card);
    background:var(--surface);
    box-shadow:var(--shadow-sm);
  }
  .faq-item h4{
    margin-top:0;
  }
  .faq-item p{
    margin-bottom:0;
    color:var(--muted);
  }
  
  /* Ultra-Compact Content Sections */
  .content-section{
    margin:32px 0;
  }
  .work-list{
    list-style:none;
    padding:0;
  }
  .work-list li{
    padding:12px 0;
    padding-left:32px;
    position:relative;
    color:var(--muted);
  }
  .work-list li:before{
    content:"→";
    position:absolute;
    left:0;
    color:var(--accent);
    font-weight:900;
  }
  
  /* Tech Stack */
  .tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    margin:24px 0;
  }
  .tech-category{
    padding:20px;
    border:1px solid var(--border);
    border-radius:var(--radius-card);
    background:var(--surface);
    box-shadow:var(--shadow-sm);
  }
  .tech-category h3{
    margin-top:0;
    font-size:16px;
  }
  .note{
    color:var(--muted);
    font-size:14px;
    font-style:italic;
  }
  
  /* Values Grid */
  .values-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-top:24px;
  }
  .value-item em{
    color:var(--muted);
    font-style:normal;
  }
  
  /* Trust Lists */
  .trust-list{
    list-style:none;
    padding:0;
    margin:16px 0;
  }
  .trust-list li{
    padding:8px 0;
    padding-left:24px;
    position:relative;
    color:var(--muted);
  }
  .trust-list li:before{
    content:"•";
    position:absolute;
    left:0;
    color:var(--accent);
  }
  
  /* Ultra-Compact Contact Form */
  .calendly-section{
    margin:32px 0;
    text-align:center;
    padding:24px;
    border:1px solid var(--border);
    border-radius:12px;
    background:var(--surface);
    box-shadow:var(--shadow-sm);
  }
  .trust-signals{
    margin:32px 0;
  }
  .contact-form-section{
    margin:40px 0;
  }
  .contact-form{
    max-width:700px;
    margin:0 auto;
  }
  fieldset{
    border:1px solid var(--border);
    border-radius:var(--radius-card);
    padding:24px;
    margin-bottom:24px;
    background:var(--surface);
    box-shadow:var(--shadow-sm);
  }
  legend{
    padding:0 12px;
    font-weight:600;
    color:var(--text);
  }
  .form-group{
    margin-bottom:18px;
  }
  .form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:500;
    color:var(--ink);
  }
  .form-group input,
  .form-group select,
  .form-group textarea{
    width:100%;
    padding:12px 16px;
    border:1px solid var(--border);
    border-radius:12px;
    background:var(--surface);
    color:var(--ink);
    font-family:inherit;
    font-size:16px;
    outline:none;
    transition:all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus{
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(248,208,80,0.15);
    outline:none;
  }
  .required{
    color:var(--error);
  }
  .checkbox-group label{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    color:var(--muted);
    font-weight:400;
  }
  .checkbox-group input[type="checkbox"]{
    width:auto;
    cursor:pointer;
  }
  .error-message{
    display:block;
    color:var(--error);
    font-size:14px;
    margin-top:6px;
  }
  .form-group.error input,
  .form-group.error select,
  .form-group.error textarea{
    border-color:rgba(220,38,38,.65);
    box-shadow:0 0 0 4px rgba(220,38,38,.10);
  }
  .privacy-note{
    font-size:14px;
    color:var(--muted);
    margin-top:12px;
  }
  .privacy-note a{
    color:var(--accent);
  }
  .form-actions{
    margin-top:28px;
    text-align:center;
  }
  .form-messages{
    margin-top:24px;
    padding:16px;
    border-radius:12px;
    display:none;
  }
  .form-messages.success{
    display:block;
    background:rgba(22,163,74,.08);
    border:1px solid rgba(22,163,74,.35);
    color:var(--success);
  }
  .form-messages.error{
    display:block;
    background:rgba(220,38,38,.08);
    border:1px solid rgba(220,38,38,.35);
    color:var(--error);
  }
  
  /* Footer */
  .footer{
    margin-top:64px;
    padding:48px 20px 24px;
    border-top:1px solid var(--border);
    background:var(--surface);
  }
  .footer-content{
    max-width:980px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:32px;
    margin-bottom:32px;
  }
  .footer-section h4{
    margin-top:0;
  }
  .footer-section ul{
    list-style:none;
    padding:0;
    margin:12px 0 0;
  }
  .footer-section ul li{
    margin:8px 0;
  }
  .footer-section a{
    color:var(--muted);
    text-decoration:none;
    transition:color .2s;
  }
  .footer-section a:hover{
    color:var(--accent);
  }
  .footer-bottom{
    max-width:980px;
    margin:0 auto;
    text-align:center;
    padding-top:24px;
    border-top:1px solid var(--border);
    color:var(--muted);
    font-size:14px;
  }
  .footer-bottom a{
    color:var(--muted);
  }
  .footer-bottom a:hover{
    color:var(--accent);
  }
  
  /* Honeypot (spam protection) */
  .honeypot{
    display:none !important;
    visibility:hidden;
    position:absolute;
    left:-9999px;
  }
  
  /* Responsive */
  @media (max-width:840px){
    .nav-links{
      display:none;
      position:absolute;
      top:100%;
      left:0;
      right:0;
      background:rgba(247,244,238,0.98);
      flex-direction:column;
      padding:18px;
      border-top:1px solid var(--border);
    }
    .nav-links.active{
      display:flex;
    }
    .nav-toggle{
      display:flex;
    }
    h1{font-size:30px;}
    h2{font-size:24px;}
    .nav-logo{font-size:12px;}
    .nav-logo::before{width:16px; height:16px;}
    .cards{grid-template-columns:1fr;}
    .value-grid{grid-template-columns:1fr;}
    .process-steps{grid-template-columns:1fr;}
    .decision-grid{grid-template-columns:1fr;}
    .model-grid{grid-template-columns:1fr;}
    .values-grid{grid-template-columns:1fr;}
    .tech-grid{grid-template-columns:1fr;}
    .hero{padding:32px 20px; margin-bottom:40px;}
    .hero-home{padding:40px 24px;}
    .hero-sub{font-size:16px;}
    .trust-badges{gap:6px;}
    .trust-badge{font-size:12px; padding:5px 10px;}
    .cta-section{padding:40px 24px;}
    .cta-final{padding:48px 28px;}
    .section-header{margin-bottom:32px;}
    .section-intro{font-size:15px;}
    .card-service{padding:24px 20px;}
    .value-item{padding:24px 20px;}
    .step{padding:24px 20px;}
    .proof{padding:24px 20px;}
    .proof-content{text-align:left;}
    .proof-list li{flex-direction:column; gap:12px; padding-left:0;}
    .section-divider{margin:32px 0;}
    
    /* Ultra-Compact Mobile spacing adjustments */
    .wrap{
      padding:32px 20px 24px;
    }
    .value-props,
    .section-values,
    .section-process,
    .section-proof,
    .section-services,
    .process,
    .proof,
    .service-section,
    .decision-helper,
    .engagement-models,
    .faq-section,
    .content-section,
    .contact-form-section{
      margin:40px 0;
    }
    .page-hero{
      margin-bottom:32px;
      padding:32px 20px;
    }
  }
  