/* ================================================================
   RAMOS AUTOMATIONS — STYLESHEET (merged direction)
   Base visual system: Design MCP concept — Orbitron display type,
     Manrope body, rounded floating panels, soft glow backdrops
   Content: real plain-language copy + real client proof
   Closing CTA: dark navy panel treatment (system-schematic concept)

   Palette: navy #0B1E3A · orange #F26522 · white #FFFFFF
            muted-navy #5C6B82 (body text) · faint borders rgba(11,30,58,.08)
   Type:    Orbitron (headlines) · Manrope (body/UI) · IBM Plex Mono (labels)

   SECTIONS
   1. Backdrop & reset
   2. Header / nav
   3. Hero
   4. Services panel
   5. Approach panel
   6. Projects panel
   7. Dark CTA panel
   8. Contact panel
   9. Footer
   10. Responsive
================================================================ */

/* ---------------------------------------------------------------
   1. BACKDROP & RESET
   Affects: whole page — tokens, base type, ambient glow layer
--------------------------------------------------------------- */
:root {
  --navy: #0B1E3A;
  --navy-soft: #3B4A63;
  --orange: #F26522;
  --orange-dark: #D8551A;
  --white: #FFFFFF;
  --panel-bg: #F7F8FA;
  --muted: #5C6B82;
  --muted-light: #8A97AC;
  --border: rgba(11,30,58,0.08);
  --orange-tint: rgba(242,101,34,0.08);
  --navy-tint: rgba(11,30,58,0.045);
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

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

h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; color: var(--navy); }

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(11,30,58,0.05), transparent 60%),
    radial-gradient(ellipse 900px 600px at 85% 15%, rgba(242,101,34,0.06), transparent 60%),
    radial-gradient(ellipse 900px 600px at 20% 60%, rgba(11,30,58,0.05), transparent 60%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(242,101,34,0.28);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(11,30,58,0.18);
}
.btn-secondary:hover { border-color: rgba(11,30,58,0.4); background: rgba(11,30,58,0.03); }

.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-title.left { font-size: 32px; }
.section-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}
.section-sub.center { margin: 0 auto; }
.section-head.center { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ---------------------------------------------------------------
   2. HEADER / NAV
   Affects: sticky nav bar, desktop links, pill CTA, mobile menu
--------------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark-img { height: 25px; width: auto; }
.logo-mark-img1 { height: 60px; width: auto; }
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
}
.logo-accent { color: var(--orange); }

.main-nav { display: flex; gap: 36px; }
.main-nav a {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--orange); }

.nav-cta { border-radius: 999px; padding: 10px 22px; box-shadow: none; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); transition: transform 0.2s ease, opacity 0.2s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 0; right: -300px;
  width: 280px; height: 100vh;
  background: var(--white);
  z-index: 200;
  padding: 90px 28px 28px;
  display: flex; flex-direction: column; gap: 22px;
  transition: right 0.25s ease;
  box-shadow: -8px 0 30px rgba(0,0,0,0.1);
}
.mobile-nav.open { right: 0; }
.mobile-nav a { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); }
.scrim {
  position: fixed; inset: 0;
  background: rgba(11,30,58,0.4);
  z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.scrim.open { opacity: 1; pointer-events: auto; }

/* ---------------------------------------------------------------
   3. HERO
   Affects: centered hero headline, glow accent, pill eyebrow, CTAs
--------------------------------------------------------------- */
.hero { position: relative; padding: 100px 0 110px; overflow: hidden; }
.hero-glow {
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(242,101,34,0.1), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-tint);
  border: 1px solid rgba(242,101,34,0.28);
  color: #C24E15;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 24px;
  max-width: 780px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta-row { display: flex; gap: 16px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.trust-row {
  display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13.5px; color: var(--muted-light);
}
.trust-row li::before { content: '● '; color: var(--orange); font-size: 9px; }

/* ---------------------------------------------------------------
   4. SERVICES PANEL
   Affects: rounded floating panel wrapper, 3-col service cards
--------------------------------------------------------------- */
.panel {
  padding: 72px 40px 88px;
  max-width: 1280px;
  margin: 24px auto;
  border-radius: var(--radius-lg);
}
.panel-tint-navy { background: linear-gradient(180deg, var(--navy-tint), rgba(11,30,58,0.01)); }
.panel-tint-orange { background: linear-gradient(180deg, var(--orange-tint), rgba(242,101,34,0.01)); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 30px;
}
.service-card-accent { background: var(--white); border-color: rgba(242,101,34,0.18); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(11,30,58,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon-accent { background: rgba(242,101,34,0.12); }
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.service-card > p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.service-list li {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  padding-left: 18px;
  position: relative;
  margin-bottom: 9px;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  transition: gap 0.15s ease;
}
.service-link:hover { gap: 10px; }

/* ---------------------------------------------------------------
   5. APPROACH PANEL
   Affects: two-column layout, numbered step rows
--------------------------------------------------------------- */
.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.steps-list { display: flex; flex-direction: column; gap: 4px; }
.step-row {
  display: flex; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.step-row:last-child { border-bottom: none; }
.step-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--orange);
  min-width: 34px;
}
.step-row h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-row p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---------------------------------------------------------------
   6. PROJECTS PANEL
   Affects: proof-of-work cards with placeholder screenshot blocks
--------------------------------------------------------------- */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.project-card:hover { box-shadow: 0 16px 40px rgba(11,30,58,0.1); transform: translateY(-2px); }

.project-shot { height: 170px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placeholder-shot {
  background: repeating-linear-gradient(135deg, rgba(11,30,58,0.05) 0px, rgba(11,30,58,0.05) 10px, rgba(11,30,58,0.09) 10px, rgba(11,30,58,0.09) 20px);
}
.placeholder-shot span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  color: rgba(11,30,58,0.55);
  background: rgba(255,255,255,0.85);
  padding: 6px 12px; border-radius: 6px;
}
.project-meta { padding: 24px 26px; }
.project-tag {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--orange);
}
.project-meta h3 { font-size: 17px; font-weight: 700; margin: 8px 0 8px; }
.project-meta p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---------------------------------------------------------------
   7. DARK CTA PANEL
   Affects: closing CTA — dark navy panel, glow accent, centered
--------------------------------------------------------------- */
.cta-dark {
  position: relative;
  overflow: hidden;
  margin: 24px auto;
   padding: 72px 40px 88px;
  max-width: 1280px;
  border-radius: 28px;
  background: var(--navy);
  text-align: center;
}
.cta-dark-glow {
  position: absolute; top: -60px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,0.3), transparent 70%);
  pointer-events: none;
}
.cta-dark h2 {
  position: relative;
  font-size: 36px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 16px;
}
.cta-dark p {
  position: relative;
  max-width: 560px; margin: 0 auto 34px;
  font-size: 16.5px; line-height: 1.6; color: #C3CBDB;
}

/* ---------------------------------------------------------------
   8. CONTACT PANEL
   Affects: two-column contact info + form, form field styling
--------------------------------------------------------------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-details { margin-top: 20px; }
.contact-details li {
  font-family: 'Manrope', sans-serif; font-size: 14.5px;
  color: var(--muted); margin-bottom: 10px;
}
.contact-details strong { color: var(--navy); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 16px 40px rgba(11,30,58,0.06);
}
.contact-form label {
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--navy); margin-top: 14px; margin-bottom: 6px;
}
.contact-form input, .contact-form textarea {
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Manrope', sans-serif; font-size: 14.5px; color: var(--navy);
  resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted-light); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--orange); }
.contact-form button { margin-top: 20px; }

/* ---------------------------------------------------------------
   9. FOOTER
   Affects: brand block, link columns, bottom copyright row
--------------------------------------------------------------- */
footer { padding: 64px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 300px; }
.footer-col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted-light); margin-bottom: 16px;
}
.footer-col a, .footer-col .footer-static {
  display: block;
  font-size: 14px; color: var(--navy); margin-bottom: 10px;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom { padding: 24px 0 40px; }
.footer-bottom p { font-size: 12.5px; color: var(--muted-light); }

/* ---------------------------------------------------------------
   11. SERVICE DETAIL PAGES
   Affects: breadcrumb, page hero, feature rows, mini FAQ, page CTA
   Used by: it-solutions.html, web-development.html, automation.html
--------------------------------------------------------------- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 600;
  color: var(--muted-light);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--muted-light); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .current { color: var(--navy); }

.page-hero { position: relative; padding: 64px 0 40px; overflow: hidden; }
.page-hero-inner { position: relative; max-width: 760px; }
.page-hero h1 {
  font-size: 44px; font-weight: 700; line-height: 1.14;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 17.5px; line-height: 1.65; color: var(--muted);
  max-width: 620px; margin-bottom: 32px;
}

.feature-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.feature-row h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.feature-row h3 .num {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--orange);
}
.feature-row p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.page-cta { margin: 24px 32px 48px; }

.related-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.related-card:hover { box-shadow: 0 16px 40px rgba(11,30,58,0.08); transform: translateY(-2px); }
.related-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.related-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }

/* ---------------------------------------------------------------
   10. RESPONSIVE
   Affects: tablet (≤900px) and mobile (≤600px) breakpoints
--------------------------------------------------------------- */
@media (max-width: 900px) {
  .main-nav, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero h1 { font-size: 38px; }
  .panel { padding: 56px 24px 64px; border-radius: 22px; margin: 16px; }
  .service-grid, .project-grid { grid-template-columns: 1fr; }
  .approach-grid, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-dark { margin: 16px; padding: 56px 28px; }
  .cta-dark h2 { font-size: 28px; }
  .page-hero h1 { font-size: 32px; }
  .feature-rows, .related-services { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 64px 0 72px; }
  .hero h1 { font-size: 30px; }
  .section-title { font-size: 26px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .trust-row { flex-direction: column; gap: 8px; }
}
