/* ============================================
   ATLAS SOFTWARES — design tokens
   ============================================ */
:root {
  --ink:        #13233B;   /* primary text, headers */
  --ink-soft:   #2A3C57;
  --paper:      #FAF7F2;   /* warm off-white background */
  --paper-dim:  #F1ECE3;
  --signal:     #65779b;   /* trust blue — links, primary actions */
  --signal-dark:#374f7e;
  --warm:       #E8623D;   /* sparing accent — one CTA highlight, stamp */
  --slate:      #5B6472;   /* secondary text */
  --line:       #DCD5C7;   /* hairline borders, warm-toned */
  --line-soft:  #E8E2D6;

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", monospace;

  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; color: var(--ink); letter-spacing: -0.01em; }

/* subtle paper grain so the warm background doesn't feel flat */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
  border-radius: 2px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--signal-dark);
  margin: 0 0 10px;
  font-weight: 600;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.logo-text { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; }

.topnav { display: flex; gap: 28px; }
.topnav a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  transition: color 0.15s;
}
.topnav a:hover { color: var(--signal); }

.topbar-cta {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--ink); border: 1px solid var(--line); border-radius: 100px;
  padding: 7px 14px; transition: border-color 0.15s, background 0.15s;
}
.topbar-cta:hover { border-color: var(--signal); background: white; }

@media (max-width: 760px) {
  .topnav { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero { padding: 40px 20px 40px; background: #8fbcff66; }
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 4.4vw, 45px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hl {
  color: var(--signal-dark);
  position: relative;
}

.hero-sub {
  font-size: 16px; color: var(--slate); max-width: 480px; margin-bottom: 30px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; font-family: var(--font-body);
  padding: 13px 22px; border-radius: 9px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 1px 0 0 rgba(0,0,0,0.05);
}
.btn-primary:hover { background: var(--signal-dark); }
.btn-ghost {
  border-color: var(--line); color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); }

.hero-trustline {
  font-size: 13.5px; color: var(--slate);
  display: flex; gap: 9px; flex-wrap: wrap; align-items: center;
}
.hero-trustline strong { color: var(--ink); font-weight: 600; }
.hero-trustline .dot { color: var(--line); }

/* Hero visual: browser card */
.hero-visual { display: flex; justify-content: center; }
.browser-card {
  width: 100%; max-width: 380px;
  margin-bottom: 18px;
  position: relative;
  transform: rotate(1.2deg);
}
.browser-frame {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(19, 35, 59, 0.25);
  overflow: hidden;
}
.browser-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px; border-bottom: 1px solid var(--line-soft);
  background: var(--paper-dim);
}
.dot-r, .dot-y, .dot-g { width: 8px; height: 8px; border-radius: 50%; }
.dot-r { background: #E8623D; }
.dot-y { background: #E0B341; }
.dot-g { background: #4CAF7D; }
.browser-url {
  margin-left: 8px; font-family: var(--font-mono); font-size: 11.5px; color: var(--slate);
}
.browser-body { padding: 22px 18px; }
.bb-line { height: 12px; border-radius: 4px; background: var(--paper-dim); margin-bottom: 10px; }
.bb-w70 { width: 70%; height: 16px; }
.bb-w40 { width: 42%; }
.bb-accent { background: var(--signal); opacity: 0.18; }
.bb-block { height: 70px; border-radius: 8px; background: var(--paper-dim); margin: 16px 0; }
.bb-row { display: flex; gap: 8px; }
.bb-chip { flex: 1; height: 30px; border-radius: 6px; background: var(--paper-dim); }
.browser-badge {
  position: absolute; bottom: -16px; right: 6px;
  background: var(--ink); color: var(--paper);
  font-size: 12px; font-weight: 600; font-family: var(--font-body);
  padding: 8px 13px; border-radius: 100px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 20px -6px rgba(19,35,59,0.4);
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-sub { max-width: none; }
}

/* ============================================
   SECTION HEAD (shared)
   ============================================ */
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.18; margin-bottom: 12px;
}
.section-sub { color: var(--slate); font-size: 16px; }

section { padding: 90px 24px; }

/* ============================================
   CAPABILITIES — Modern Minimal Feature Grid
   ============================================ */
   .capabilities {
    background: var(--paper);
    padding: 90px 24px;
  }
  
  .capabilities-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
  
  /* Individual Feature Block */
  .cap-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 10px 0;
  }
  
  /* Icon Wrap Frame matching Design Token */
  .cap-icon {
    width: 44px;
    height: 44px;
    color: var(--signal); /* Soft professional blue accent */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper-dim);
    border-radius: 6px;
    border: 1px solid var(--line-soft);
  }
  
  .cap-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .cap-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  
  .cap-card p {
    font-size: 14.5px;
    color: var(--slate);
    line-height: 1.6;
    margin: 0 0 18px 0;
  }
  
  /* Custom Minimal List Inside Cards */
  .cap-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0; /* Pushes list to bottom context */
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .cap-list li {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .cap-list li::before {
    content: "·";
    font-size: 20px;
    line-height: 0;
    color: var(--warm); /* Accent point marker */
    font-weight: bold;
  }
  
  /* Responsive Structural Modifiers */
  @media (max-width: 992px) {
    .capabilities-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 36px 24px;
    }
  }
  
  @media (max-width: 640px) {
    .capabilities-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  /* ============================================
   SERVICES — Optimized Modern 3-Column Dashboard
   ============================================ */
.services { 
  background: var(--paper-dim); 
  border-top: 1px solid var(--line); 
  border-bottom: 1px solid var(--line); 
  padding: 90px 24px;
}

.pricing-dashboard-wrapper {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 3-Column Grid Configuration */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Base Card UI Structure */
.pcard {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 40px -30px rgba(19,35,59,0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(19,35,59,0.12);
}

/* Featured Visual Style Modifiers */
.pcard-featured {
  border: 2px solid var(--warm);
  background: linear-gradient(180deg, rgba(46,111,242,0.02), transparent);
  box-shadow: 0 20px 40px -20px rgba(232,98,61,0.08);
}
.pcard-featured:hover {
  box-shadow: 0 30px 60px -20px rgba(232,98,61,0.15);
}

/* Structural Header inside Cards */
.pcard-meta-top {
  margin-bottom: 12px;
}
.pcard-id {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--slate);
}
.highlight-id {
  color: var(--warm);
  font-weight: 600;
}

.pcard h3 { 
  font-size: 22px; 
  font-weight: 700; 
  color: var(--ink);
  margin: 0 0 4px 0; 
}
.ritem-for { 
  font-size: 13.5px; 
  color: var(--slate); 
  font-style: italic; 
  margin: 0 0 20px 0;
  line-height: 1.4;
  min-height: 38px; /* Alignment equalizer */
}

/* Compact Target Pricing Hierarchy */
.pcard-price-wrap {
  padding-bottom: 12px;
}
.pcard-price {
  font-family: var(--font-mono); 
  font-size: 21px; 
  font-weight: 700; 
  color: var(--ink);
}
.feature-price {
  color: var(--signal-dark);
}

.pcard-delivery-wrap {
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line-soft);
  margin-bottom: 24px;
}
.ritem-delivery { font-size: 13px; color: var(--slate); }
.ritem-delivery strong { color: var(--ink); font-family: var(--font-mono); font-weight: 600; }

/* Dynamic Badge Stamp Positioning */
.ritem-stamp {
  position: absolute; 
  top: -14px; 
  right: 20px;
  background: #ffffff;
  font-family: var(--font-mono); 
  font-size: 10px; 
  font-weight: 600;
  text-transform: uppercase; 
  letter-spacing: 0.05em;
  color: var(--warm); 
  border: 1px solid var(--warm);
  padding: 4px 10px; 
  border-radius: 100px;
}

/* Features List Restructuring */
.pcard-body {
  flex: 1;
}
.pcard-body .ritem-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pcard-body .ritem-features li {
  font-size: 14px; 
  color: var(--ink-soft);
  padding-left: 18px; 
  position: relative;
  line-height: 1.4;
}
.pcard-body .ritem-features li::before {
  content: ""; 
  position: absolute; 
  left: 0; 
  top: 7px;
  width: 6px; 
  height: 6px; 
  border-radius: 50%;
  background: var(--signal); 
  opacity: 0.7;
}

/* Footer & Add-ons Horizontal Split Layout */
.pricing-footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.receipt-total {
  font-size: 13px; 
  color: var(--slate); 
  font-style: italic;
  line-height: 1.6;
}

.addons h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.addons-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px dashed var(--line-soft);
  padding-bottom: 8px;
}

.addon-row dt { color: var(--ink-soft); }
.addon-row dd { 
  margin: 0; 
  font-family: var(--font-mono); 
  font-weight: 600; 
  color: var(--ink); 
}
.addon-unit { font-size: 11px; color: var(--slate); }

/* Clean Mobile Framework Fallbacks */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ritem-for {
    min-height: auto;
  }
  .pricing-footer-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}




/* ============================================
   PROCESS
   ============================================ */
.process-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.pstep {
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}
.pstep-mark {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 16.5px;
  margin-bottom: 8px;
}
.pstep p { color: var(--slate); font-size: 14.5px; margin: 0; }

@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}


/* ============================================
   FAQ SECTION — Minimalist Interactive Layout
   ============================================ */
   .faq {
    background: var(--paper); /* Kept background consistent with typography canvas */
    border-top: 1px solid var(--line-soft);
  }
  
  .faq-container {
    max-width: 760px; /* Aligned tight layout width for scannability */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  
  .faq-item {
    border-bottom: 1px solid var(--line-soft);
    padding: 24px 0;
  }
  
  .faq-item:first-child {
    border-top: 1px solid var(--line-soft);
  }
  
  /* Question Panel Frame trigger */
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 4px 0;
  }
  
  .faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
  }
  
  /* Minimal plus/minus vector indicator */
  .faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: 20px;
  }
  
  .faq-icon::before,
  .faq-icon::after {
    content: "";
    position: absolute;
    background: var(--slate);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  /* Horizontal line component */
  .faq-icon::before {
    top: 6px; left: 0; right: 0; height: 2px;
  }
  /* Vertical line component */
  .faq-icon::after {
    left: 6px; top: 0; bottom: 0; width: 2px;
  }
  
  /* Answer text hidden structural canvas */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  }
  
  .faq-answer p {
    font-size: 14.5px;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
    padding-top: 12px;
  }
  
  /* Active State Interactive Classes */
  .faq-item.active .faq-question h3 {
    color: var(--signal); /* Highlight title color upon selection interaction */
  }
  
  .faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0; /* Smoothly collapse dynamic vertical line into a minus sign */
  }
  
  .faq-item.active .faq-icon::before {
    transform: rotate(180deg);
    background: var(--signal);
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px; /* Allows smooth expanding layout bounds */
  }

/* ============================================
   WHY
   ============================================ */
.why { background: var(--ink); color: var(--paper); }
.why-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
.why-head { text-align: left; max-width: none; margin: 0; }
.why .eyebrow { color: #8FB3FF; }
.why h2 { color: var(--paper); }

.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-list li {
  font-size: 15.5px; color: #C7CDD9; line-height: 1.55;
  padding-left: 24px; position: relative;
}
.why-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #6FCF97; font-weight: 700; font-size: 14px;
}
.why-list strong { color: var(--paper); font-weight: 600; }

@media (max-width: 760px) {
  .why-inner { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 10px; }
.contact-sub { color: var(--slate); margin-bottom: 38px; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 22px 16px; background: white;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  display: flex; flex-direction: column; gap: 6px;
}
.contact-card:hover {
  border-color: var(--signal); transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(19,35,59,0.25);
}
.cc-label {
  font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--slate);
}
.cc-value { font-size: 17px; font-weight: 600; color: var(--ink); }
.cc-small { font-size: 13.5px; word-break: break-word; line-height: 1.3; }

@media (max-width: 620px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer { border-top: 1px solid var(--line); padding: 26px 24px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 13.5px; color: var(--slate);
}
.footer-inner a:hover { color: var(--signal); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.topright-message { display: flex; align-items: center;gap: 10px; }
.topright-message-whatsapp {padding: 6.5px 15px; border-radius: 33px;background: #005c2d;}
.topright-message-whatsapp:hover {background: #004b24;}
@media (max-width: 576px) {
  .topright-message-whatsapp  
  {
    display: none;
  }
}
/* ============================================
   ATLAS SOFTWARES — About page styles
   (merged from about.css)
   ============================================ */


/* ---------- HERO ---------- */
.about-hero { position: relative; padding: 40px 20px 80px; background: #8fbcff66; overflow: hidden; }
.about-hero-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.about-hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.6); padding: 6px 14px 6px 6px; border-radius: 100px; }
.about-hero .eyebrow-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--warm); display: inline-flex; align-items: center; justify-content: center; }
.about-hero .eyebrow-dot svg { width: 11px; height: 11px; color: white; }
.about-hero h1 {
  font-size: clamp(38px, 5.6vw, 45px); font-weight: 700; line-height: 1.04; letter-spacing: -0.015em;
  max-width: 800px; margin: 22px 0 22px;
}
.about-hero h1 .accent-word { color: var(--signal-dark); }
.about-hero-sub { font-size: 16px; color: var(--ink-soft); max-width: 600px; line-height: 1.65; }

.about-hero-orbit { position: absolute; top: -90px; right: -40px; width: 380px; height: 380px; border: 1px solid rgba(19,35,59,0.08); border-radius: 50%; }
.about-hero-orbit::before { content: ""; position: absolute; inset: 44px; border: 1px solid rgba(19,35,59,0.08); border-radius: 50%; }
.about-hero-orbit::after { content: ""; position: absolute; inset: 88px; border: 1px dashed rgba(216,98,61,0.35); border-radius: 50%; }
.about-hero-blob {
  position: absolute; bottom: -120px; left: -60px; width: 260px; height: 260px;
  background: rgba(46,111,242,0.07); border-radius: 50%; filter: blur(2px);
}
.about-hero-wave {
  position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1;
}
.about-hero-wave svg { display: block; width: 100%; height: 56px; }
.about-hero-grid {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%2313233B' stroke-width='1.2' stroke-opacity='0.16'%3E%3Cpath d='M0 20h30v20h40'/%3E%3Cpath d='M120 40h-25v25h-35v30'/%3E%3Cpath d='M0 90h45v-25h35'/%3E%3Cpath d='M90 0v30h30'/%3E%3Ccircle cx='30' cy='40' r='3' fill='%2313233B' stroke='none'/%3E%3Ccircle cx='70' cy='65' r='3' fill='%2313233B' stroke='none'/%3E%3Ccircle cx='95' cy='30' r='3' fill='%2313233B' stroke='none'/%3E%3Ccircle cx='45' cy='90' r='3' fill='%2313233B' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 85% 30%, #0000001f 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 75% at 85% 30%, #0000001f 0%, transparent 72%);
}

/* Stat strip — graphic blocks, not plain rows */
.about-stats {
  max-width: var(--maxw); margin: 44px auto 0; position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.about-stat {
  background: var(--ink); border-radius: 14px; padding: 24px 24px 22px;
  position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-stat:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -16px rgba(19,35,59,0.35); }
.about-stat:nth-child(2) { background: var(--signal-dark); }
.about-stat:nth-child(3) { background: var(--warm); }
.about-stat-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.about-stat-icon svg { width: 18px; height: 18px; color: white; }
.about-stat-glyph {
  position: absolute; bottom: -18px; right: -8px;
  font-family: var(--font-display); font-weight: 700; font-size: 90px;
  color: white; opacity: 0.08; line-height: 1; pointer-events: none;
}
.about-stat-num { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: white; display: block; margin-bottom: 5px; letter-spacing: -0.01em; position: relative; z-index: 1; }
.about-stat-label { font-size: 13.5px; color: rgba(255,255,255,0.8); position: relative; z-index: 1; }
@media (max-width: 680px) { .about-stats { grid-template-columns: 1fr; } }

/* ---------- WHO WE ARE ---------- */
.about-intro { padding: 80px 40px; position: relative; overflow: hidden; }
.about-intro-inner {
  max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px;
}
.about-intro-label { position: relative; }
.about-intro-label .eyebrow { margin-bottom: 14px; }
.about-intro-label-rule { width: 36px; height: 3px; background: var(--signal); border-radius: 2px; }
.about-intro-icon {
  position: absolute; top: 40px; left: -16px; width: 220px; height: 220px;
  color: var(--signal); opacity: 0.5; pointer-events: none;
  font-family: var(--font-mono); font-weight: 600;
}
.about-intro-inner p { font-size: 16.5px; color: var(--ink-soft); margin: 0 0 20px; line-height: 1.75; }
.about-intro-inner p:last-child { margin-bottom: 0; }
.about-intro-inner p strong { color: var(--ink); font-weight: 600; }
@media (max-width: 820px) {
  .about-intro-inner { grid-template-columns: 1fr; gap: 26px; }
  .about-intro-icon { display: none; }
}

/* ---------- WHAT WE DO ---------- */
.about-services { background: var(--paper-dim); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.about-services-texture {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='100'%3E%3Ctext x='4' y='18' font-family='monospace' font-size='13' fill='%2313233B' fill-opacity='0.09'%3E01001%3C/text%3E%3Ctext x='40' y='46' font-family='monospace' font-size='13' fill='%2313233B' fill-opacity='0.09'%3E10110%3C/text%3E%3Ctext x='8' y='74' font-family='monospace' font-size='13' fill='%2313233B' fill-opacity='0.09'%3E11001%3C/text%3E%3Ctext x='90' y='30' font-family='monospace' font-size='13' fill='%2313233B' fill-opacity='0.09'%3E00110%3C/text%3E%3Ctext x='100' y='88' font-family='monospace' font-size='13' fill='%2313233B' fill-opacity='0.09'%3E01010%3C/text%3E%3C/svg%3E");
  background-size: 160px 100px;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}
.about-service-list { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.about-service-row {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: center;
  padding: 22px 20px; background: white; border: 1px solid var(--line); border-radius: 10px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.about-service-row:hover {
  border-color: var(--signal); transform: translateX(4px);
  box-shadow: 0 14px 30px -20px rgba(19,35,59,0.25);
}
.about-service-row.featured {
  background: var(--ink); border-color: var(--ink);
}
.about-service-row.featured:hover { border-color: var(--warm); transform: translateX(4px) scale(1.01); }
.about-service-row.featured h3, .about-service-row.featured p { color: var(--paper); }
.about-service-row.featured p { color: #C7CDD9; }
.about-featured-tag {
  position: absolute; top: -10px; right: 18px;
  background: var(--warm); color: white; font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 100px;
}
.about-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--paper-dim); color: var(--signal-dark);
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.about-service-row:hover .about-num { background: var(--signal); color: white; border-color: var(--signal); }
.about-service-row.featured .about-num { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.2); }
.about-service-row.featured:hover .about-num { background: var(--warm); border-color: var(--warm); }
.about-service-row h3 { font-size: 18.5px; font-weight: 700; margin-bottom: 3px; }
.about-service-row p { font-size: 14px; color: var(--slate); margin: 0; }

/* ---------- WHY CHOOSE US ---------- */
.about-why { padding: 90px 24px; position: relative; overflow: hidden; }
.about-why-dots {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='none' stroke='%2313233B' stroke-width='1.2' stroke-opacity='0.13'%3E%3Cpath d='M10 10h25v25M65 10v25h25M10 90v-25h25M90 90v-25h-25'/%3E%3Ccircle cx='35' cy='35' r='2.5' fill='%2313233B' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='65' cy='35' r='2.5' fill='%2313233B' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='35' cy='65' r='2.5' fill='%2313233B' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='65' cy='65' r='2.5' fill='%2313233B' stroke='none' fill-opacity='0.18'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 0%, transparent 75%);
}
.about-why-grid {
  max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.about-why-card {
  background: white; padding: 30px 26px; border: 1px solid var(--line); border-radius: 12px;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.about-why-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--signal); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.about-why-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -24px rgba(19,35,59,0.3); border-color: var(--line-soft); }
.about-why-card:hover::before { transform: scaleX(1); }
.about-why-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #8fbcff33; color: var(--signal-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.about-why-card:nth-child(even) .about-why-icon { background: rgba(216,98,61,0.12); color: var(--warm); }
.about-why-icon svg { width: 22px; height: 22px; }
.about-why-card:nth-child(even)::before { background: var(--warm); }
.about-why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.about-why-card p { font-size: 14px; color: var(--slate); margin: 0; line-height: 1.6; }
@media (max-width: 820px) { .about-why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .about-why-grid { grid-template-columns: 1fr; } }

/* ---------- MISSION / VISION ---------- */
.about-mv { background: var(--ink); color: var(--paper); padding: 96px 24px; position: relative; overflow: hidden; }
.about-mv-dots {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cg fill='none' stroke='%23FAF7F2' stroke-width='1' stroke-opacity='0.14'%3E%3Cpath d='M20 20 70 50 120 25M20 20 35 90M70 50 60 110M120 25 110 95M35 90 60 110 110 95'/%3E%3Ccircle cx='20' cy='20' r='3' fill='%23FAF7F2' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='70' cy='50' r='3' fill='%23FAF7F2' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='120' cy='25' r='3' fill='%23FAF7F2' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='35' cy='90' r='3' fill='%23FAF7F2' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='60' cy='110' r='3' fill='%23FAF7F2' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='110' cy='95' r='3' fill='%23FAF7F2' stroke='none' fill-opacity='0.18'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 0%, transparent 80%);
}
.about-mv-grid {
  max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.about-mv-card { padding: 8px 44px; position: relative; }
.about-mv-card:first-child { padding-left: 8px; }
.about-mv-card:last-child { padding-right: 8px; }
.about-mv-grid::after {
  content: ""; position: absolute; top: 8px; bottom: 8px; left: 50%;
  width: 1px; background: rgba(250,247,242,0.15);
}
.about-mv-divider-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--warm);
  display: flex; align-items: center; justify-content: center; z-index: 2;
  box-shadow: 0 0 0 8px var(--ink);
}
.about-mv-divider-badge svg { width: 22px; height: 22px; color: white; }
.about-mv-card .eyebrow {
  color: #8FB3FF; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(143,179,255,0.1); padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
.about-mv-card h3 { color: var(--paper); font-size: 24px; line-height: 1.28; margin-bottom: 14px; }
.about-mv-card p { color: #C7CDD9; font-size: 15.5px; line-height: 1.7; margin: 0; }
@media (max-width: 760px) {
  .about-mv-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-mv-grid::after { display: none; }
  .about-mv-divider-badge { display: none; }
  .about-mv-card, .about-mv-card:first-child, .about-mv-card:last-child { padding: 0; }
}

/* ---------- STATEMENT ---------- */
.about-statement { padding: 100px 24px; text-align: center; position: relative; background: var(--signal); overflow: hidden; }
.about-statement::before {
  content: ""; position: absolute; top: -100px; left: -60px; width: 280px; height: 280px;
  border-radius: 50%; background: rgba(255,255,255,0.06);
}
.about-statement::after {
  content: ""; position: absolute; bottom: -120px; right: -40px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(255,255,255,0.06);
}
.about-statement-mark {
  font-family: var(--font-display); font-size: 68px; font-weight: 700; color: white;
  opacity: 0.35; line-height: 1; margin-bottom: 0; position: relative; z-index: 1;
}
.about-statement blockquote {
  max-width: 760px; margin: 0 auto; position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 600; font-style: normal;
  font-size: clamp(24px, 3vw, 24px); line-height: 1.4; color: white;
}
.about-statement blockquote span { color: #FFD8C9; }

/* ---------- CTA ---------- */
.about-cta { padding: 30px 24px 60px; text-align: center; }
.about-cta-card {
  max-width: 720px; margin: 0 auto; padding: 20px 0px;
  background: var(--ink); border-radius: 18px; position: relative; overflow: hidden;
}
.about-cta-card::before {
  content: ""; position: absolute; top: -80px; right: -80px; width: 220px; height: 220px;
  border: 1px solid rgba(250,247,242,0.08); border-radius: 50%;
}
.about-cta-card::after {
  content: ""; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px;
  border: 1px solid rgba(250,247,242,0.08); border-radius: 50%;
}

.about-cta-card .eyebrow { color: #8FB3FF; position: relative; z-index: 1; }
.about-cta-card h2 {
  color: var(--paper); font-size: clamp(26px, 3.6vw, 30px); max-width: 560px;
  margin: 0 auto 28px; position: relative; z-index: 1;
}
.about-cta-card .btn { font-size: 13px; padding: 8px 28px; position: relative; z-index: 1; }
.about-cta-card .btn-primary { background: var(--paper); color: var(--ink); }
.about-cta-card .btn-primary:hover { background: #8FB3FF; }

/* ============================================
   ATLAS SOFTWARES — Legal pages (Privacy Policy, etc.)
   ============================================ */

/* ---------- HERO ---------- */
.legal-hero { position: relative; padding: 56px 20px 80px; background: #8fbcff66; overflow: hidden; }
.legal-hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }
.legal-hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.6); padding: 6px 14px 6px 6px; border-radius: 100px; }
.legal-hero .eyebrow-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--warm); display: inline-flex; align-items: center; justify-content: center; }
.legal-hero .eyebrow-dot svg { width: 11px; height: 11px; color: white; }
.legal-hero h1 {
  font-size: clamp(32px, 5vw, 42px); font-weight: 700; line-height: 1.08; letter-spacing: -0.015em;
  max-width: 700px; margin: 20px 0 14px;
}
.legal-hero-orbit { position: absolute; top: -90px; right: -40px; width: 380px; height: 380px; border: 1px solid rgba(19,35,59,0.08); border-radius: 50%; }
.legal-hero-orbit::before { content: ""; position: absolute; inset: 44px; border: 1px solid rgba(19,35,59,0.08); border-radius: 50%; }
.legal-hero-orbit::after { content: ""; position: absolute; inset: 88px; border: 1px dashed rgba(216,98,61,0.35); border-radius: 50%; }
.legal-hero-blob {
  position: absolute; bottom: -120px; left: -60px; width: 260px; height: 260px;
  background: rgba(46,111,242,0.07); border-radius: 50%; filter: blur(2px);
}
.legal-hero-wave {
  position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1;
}
.legal-hero-wave svg { display: block; width: 100%; height: 56px; }
.legal-hero-grid {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%2313233B' stroke-width='1.2' stroke-opacity='0.16'%3E%3Cpath d='M0 20h30v20h40'/%3E%3Cpath d='M120 40h-25v25h-35v30'/%3E%3Cpath d='M0 90h45v-25h35'/%3E%3Cpath d='M90 0v30h30'/%3E%3Ccircle cx='30' cy='40' r='3' fill='%2313233B' stroke='none'/%3E%3Ccircle cx='70' cy='65' r='3' fill='%2313233B' stroke='none'/%3E%3Ccircle cx='95' cy='30' r='3' fill='%2313233B' stroke='none'/%3E%3Ccircle cx='45' cy='90' r='3' fill='%2313233B' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 85% 30%, #0000001f 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 75% at 85% 30%, #0000001f 0%, transparent 72%);
}
.legal-updated {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft);
  background: rgba(255,255,255,0.55); padding: 6px 14px; border-radius: 100px;
  position: relative; z-index: 1;
}
.legal-updated svg { width: 13px; height: 13px; color: var(--signal-dark); }

/* ---------- BODY LAYOUT ---------- */
.legal-wrap { max-width: 880px; margin: 0 auto; padding: 56px 20px 90px; display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }

/* ---------- SIDE NAV (table of contents) ---------- */
.legal-toc { position: sticky; top: 96px; }
.legal-toc-label {
  font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--slate); margin: 0 0 14px; font-weight: 600;
}
.legal-toc-list { display: flex; flex-direction: column; gap: 2px; border-left: 1px solid var(--line); }
.legal-toc-list a {
  font-size: 14px; color: var(--ink-soft); padding: 7px 0 7px 16px;
  border-left: 2px solid transparent; margin-left: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.legal-toc-list a:hover { color: var(--signal-dark); }
.legal-toc-list a.active { color: var(--signal-dark); border-left-color: var(--signal); font-weight: 600; }

/* ---------- CONTENT ---------- */
.legal-content { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; }
.legal-section { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px dashed var(--line); scroll-margin-top: 96px; }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--paper-dim); color: var(--signal-dark);
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  border: 1px solid var(--line); margin-right: 10px; vertical-align: middle;
}
.legal-section h2 {
  font-size: 20.5px; font-weight: 700; color: var(--ink);
  margin: 0 0 16px; display: flex; align-items: center; gap: 2px;
}
.legal-section h3 {
  font-size: 16px; font-weight: 600; color: var(--ink);
  margin: 22px 0 10px;
}
.legal-section p { margin: 0 0 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 0 0 14px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.legal-section ul:last-child { margin-bottom: 0; }
.legal-section li { padding-left: 20px; position: relative; }
.legal-section li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal); opacity: 0.65;
}
.legal-section strong { color: var(--ink); font-weight: 600; }
.legal-section a.legal-link { color: var(--signal-dark); font-weight: 500; text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.legal-section a.legal-link:hover { text-decoration-color: var(--signal-dark); }

/* Callout box — used for the "Not selling data" / contact emphasis */
.legal-callout {
  background: var(--paper-dim); border: 1px solid var(--line); border-radius: 10px;
  padding: 18px 20px; margin: 18px 0; display: flex; gap: 12px; align-items: flex-start;
}
.legal-callout svg { width: 18px; height: 18px; color: var(--signal-dark); flex-shrink: 0; margin-top: 1px; }
.legal-callout p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* Contact card at the end */
.legal-contact-card {
  background: var(--ink); border-radius: 14px; padding: 30px 32px; margin-top: 8px;
  display: flex; flex-direction: column; gap: 4px; position: relative; overflow: hidden;
}
.legal-contact-card::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px;
  border: 1px solid rgba(250,247,242,0.08); border-radius: 50%;
}
.legal-contact-card h3 { color: var(--paper); font-size: 17px; margin: 0 0 12px; position: relative; z-index: 1; }
.legal-contact-row { display: flex; align-items: baseline; gap: 8px; font-size: 14.5px; position: relative; z-index: 1; }
.legal-contact-row .cc-k { font-family: var(--font-mono); font-size: 12px; color: #8FB3FF; min-width: 64px; text-transform: uppercase; letter-spacing: 0.06em; }
.legal-contact-row a, .legal-contact-row span.cc-v { color: var(--paper); font-weight: 500; }
.legal-contact-row a:hover { color: #8FB3FF; }

@media (max-width: 820px) {
  .legal-wrap { grid-template-columns: 1fr; gap: 28px; padding: 48px 20px 70px; }
  .legal-toc { position: static; }
  .legal-toc-list { display: grid; grid-template-columns: 1fr 1fr; border-left: none; gap: 4px; }
  .legal-toc-list a { border-left: none; border-bottom: 2px solid transparent; padding: 7px 4px; margin-left: 0; }
  .legal-toc-list a.active { border-bottom-color: var(--signal); }
}
@media (max-width: 560px) {
  .legal-toc-list { grid-template-columns: 1fr; }
  .legal-contact-card { padding: 24px 22px; }
}

/* ============================================
   ATLAS SOFTWARES — Contact page
   ============================================ */

/* ---------- HERO (rich version, matches About page treatment) ---------- */
.contact-hero { position: relative; padding: 56px 20px 80px; background: #8fbcff66; overflow: hidden; }
.contact-hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }
.contact-hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.6); padding: 6px 14px 6px 6px; border-radius: 100px; }
.contact-hero .eyebrow-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--warm); display: inline-flex; align-items: center; justify-content: center; }
.contact-hero .eyebrow-dot svg { width: 11px; height: 11px; color: white; }
.contact-hero h1 {
  font-size: clamp(32px, 5vw, 42px); font-weight: 700; line-height: 1.1; letter-spacing: -0.015em;
  max-width: 700px; margin: 20px 0 14px;
}
.contact-hero h1 .accent-word { color: var(--signal-dark); }

.contact-hero-orbit { position: absolute; top: -90px; right: -40px; width: 380px; height: 380px; border: 1px solid rgba(19,35,59,0.08); border-radius: 50%; }
.contact-hero-orbit::before { content: ""; position: absolute; inset: 44px; border: 1px solid rgba(19,35,59,0.08); border-radius: 50%; }
.contact-hero-orbit::after { content: ""; position: absolute; inset: 88px; border: 1px dashed rgba(216,98,61,0.35); border-radius: 50%; }
.contact-hero-blob {
  position: absolute; bottom: -120px; left: -60px; width: 260px; height: 260px;
  background: rgba(46,111,242,0.07); border-radius: 50%; filter: blur(2px);
}
.contact-hero-wave {
  position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1;
}
.contact-hero-wave svg { display: block; width: 100%; height: 56px; }
.contact-hero-grid {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%2313233B' stroke-width='1.2' stroke-opacity='0.16'%3E%3Cpath d='M0 20h30v20h40'/%3E%3Cpath d='M120 40h-25v25h-35v30'/%3E%3Cpath d='M0 90h45v-25h35'/%3E%3Cpath d='M90 0v30h30'/%3E%3Ccircle cx='30' cy='40' r='3' fill='%2313233B' stroke='none'/%3E%3Ccircle cx='70' cy='65' r='3' fill='%2313233B' stroke='none'/%3E%3Ccircle cx='95' cy='30' r='3' fill='%2313233B' stroke='none'/%3E%3Ccircle cx='45' cy='90' r='3' fill='%2313233B' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 85% 30%, #0000001f 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 75% at 85% 30%, #0000001f 0%, transparent 72%);
}

.contact-page-sub { font-size: 16px; color: var(--ink-soft); max-width: 600px; line-height: 1.65; margin: 14px 0 0; }

.contact-page { padding: 64px 24px 100px; }
.contact-page-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px;
  align-items: start;
}

/* Info column */
.contact-page-info { position: sticky; top: 96px; }
.contact-info-list { display: flex; flex-direction: column; gap: 12px; margin: 18px 0 28px; }
.contact-info-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: white;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
a.contact-info-row:hover { border-color: var(--signal); transform: translateY(-2px); box-shadow: 0 14px 30px -18px rgba(19,35,59,0.22); }
.contact-info-static { cursor: default; }
.cir-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: #8fbcff33; color: var(--signal-dark);
  display: flex; align-items: center; justify-content: center;
}
.cir-icon svg { width: 18px; height: 18px; }
.cir-label {
  display: block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--slate); margin-bottom: 3px;
}
.cir-value { display: block; font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-page-whatsapp .btn { width: 100%; justify-content: center; }

@media (max-width: 980px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-page-info { position: static; }
}

/* Form column */
.contact-form-heading { font-size: 24px; font-weight: 700; margin: 10px 0 8px; }
.contact-form-sub { color: var(--slate); font-size: 15px; margin: 0 0 28px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field-full { width: 100%; }
.cf-label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.cf-field input, .cf-field textarea {
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 9px; padding: 12px 14px;
  background: white; resize: vertical; transition: border-color 0.15s, box-shadow 0.15s;
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: #9AA3B2; }
.cf-field input:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px rgba(101,119,155,0.15);
}
.cf-submit { align-self: flex-start; margin-top: 4px; cursor: pointer; }

@media (max-width: 560px) {
  .cf-row { grid-template-columns: 1fr; }
}

/* ============================================
   ATLAS SOFTWARES — Thank You page
   ============================================ */

.thankyou { position: relative; padding: 90px 24px 110px; display: flex; justify-content: center; overflow: hidden; }
.thankyou-dots {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='none' stroke='%2313233B' stroke-width='1.2' stroke-opacity='0.13'%3E%3Cpath d='M10 10h25v25M65 10v25h25M10 90v-25h25M90 90v-25h-25'/%3E%3Ccircle cx='35' cy='35' r='2.5' fill='%2313233B' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='65' cy='35' r='2.5' fill='%2313233B' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='35' cy='65' r='2.5' fill='%2313233B' stroke='none' fill-opacity='0.18'/%3E%3Ccircle cx='65' cy='65' r='2.5' fill='%2313233B' stroke='none' fill-opacity='0.18'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 0%, transparent 75%);
}
.thankyou-blob-a {
  position: absolute; top: -100px; right: -60px; width: 280px; height: 280px;
  background: rgba(46,111,242,0.07); border-radius: 50%; filter: blur(2px); pointer-events: none;
}
.thankyou-blob-b {
  position: absolute; bottom: -110px; left: -70px; width: 260px; height: 260px;
  background: rgba(232,98,61,0.06); border-radius: 50%; filter: blur(2px); pointer-events: none;
}
.thankyou-card {
  max-width: 560px; text-align: center; background: white;
  border: 1px solid var(--line); border-radius: 18px;
  padding: 52px 40px; box-shadow: 0 30px 60px -30px rgba(19,35,59,0.18);
  position: relative; z-index: 1;
}
.thankyou-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 22px;
  background: rgba(76,175,125,0.12); color: #2F9E63;
  display: flex; align-items: center; justify-content: center;
}
.thankyou-icon svg { width: 32px; height: 32px; }
.thankyou .eyebrow { justify-content: center; display: flex; }
.thankyou h1 { font-size: clamp(24px, 3.4vw, 30px); font-weight: 700; line-height: 1.22; margin: 12px 0 16px; }
.thankyou-lead { font-size: 16.5px; font-weight: 600; color: var(--ink); margin: 0 0 12px; }
.thankyou-body { font-size: 15px; color: var(--slate); line-height: 1.7; max-width: 440px; margin: 0 auto 18px; }
.thankyou-signoff { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 30px; line-height: 1.6; }
.thankyou-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 480px) {
  .thankyou-card { padding: 40px 24px; }
  .thankyou-actions { flex-direction: column; }
  .thankyou-actions .btn { width: 100%; justify-content: center; }
}


/* ============================================
   RECENT PROJECTS — premium modern grid
   ============================================ */
   .projects {
    background: var(--paper); /* Default light background consistency */
    border-top: 1px solid var(--line-soft);
  }
  
  .projects-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .project-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    cursor: pointer;
  }
  
  /* Image Container Frame with Premium Border and Shadow */
  .pcard-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper-dim);
    box-shadow: 0 4px 20px -10px rgba(19, 35, 59, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .pcard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  /* Smooth Interactive Overlay Grid */
  .pcard-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 35, 59, 0.4); /* Matching ink base */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
  }
  
  .pcard-link-text {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #ffffff;
    background: var(--ink);
    padding: 10px 20px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  /* Hover States Setup */
  .project-card:hover .pcard-image {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(19, 35, 59, 0.15);
    border-color: var(--line-soft);
  }
  
  .project-card:hover .pcard-image img {
    transform: scale(1.03);
  }
  
  .project-card:hover .pcard-overlay {
    opacity: 1;
  }
  
  .project-card:hover .pcard-link-text {
    transform: translateY(0);
  }
  
  /* Metadata Text Custom Styling */
  .pcard-meta {
    padding-top: 20px;
  }
  
  .pcard-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--slate);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }
  
  .pcard-meta h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    transition: color 0.2s ease;
  }
  
  .project-card:hover .pcard-meta h3 {
    color: var(--signal); /* Interactive highlight shift */
  }
  
  .pcard-meta p {
    font-size: 14.5px;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
  }
  
  /* Responsive Structural Fallback */
  @media (max-width: 880px) {
    .projects-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  }


  /* ============================================
   SERVICES DETAILED LIST LAYOUT
   ============================================ */
.services-hero {
  padding: 120px 24px 60px;
  background: var(--paper);
}

.services-list-section {
  padding: 0 24px 100px;
  background: var(--paper);
}

.services-page-container {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Elegant Horizontal Service Distribution Bar */
.service-row-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 44px 40px;
  box-shadow: 0 10px 35px -20px rgba(19,35,59,0.06);
  align-items: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-row-item:hover {
  border-color: var(--line-soft);
  box-shadow: 0 25px 50px -25px rgba(19,35,59,0.12);
}

/* Text Meta Block Styles */
.s-row-meta {
  display: flex;
  flex-direction: column;
}

.s-row-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.service-row-item h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.s-row-meta p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

/* Premium SEO Anchor Links styling */
.s-row-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--signal-dark);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  transition: color 0.2s ease, transform 0.2s ease;
}

.s-row-link:hover {
  color: var(--warm);
  transform: translateX(4px);
}

/* Specs/Features Area on Right Panel */
.s-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 2px solid var(--line-soft);
  padding-left: 28px;
}

.s-specs-list li {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.4;
  position: relative;
}

/* Tablet & Mobile Layout Shifts */
@media (max-width: 880px) {
  .service-row-item {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
  }
  
  .s-specs-list {
    border-left: none;
    border-top: 1px dashed var(--line-soft);
    padding-left: 0;
    padding-top: 20px;
  }
}