/* ================================
   CARL • ERP Integration — Styles
   Matches APM / Work Orders look
   ================================ */

/* Theme tokens (same palette as APM) */
:root{
  --primary-color:#007bff;
  --secondary-color:#1a237e;
  --accent-color:#28a745;
  --light-bg:#f8f9fa;
  --dark-bg:#e9ecef;
  --text-color:#343a40;
  --light-text:#6c757d;
  --white:#fff;

  --radius:8px;
  --shadow-sm:0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:0 8px 20px rgba(0,0,0,.15);
}

/* Base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.6;
  color:var(--text-color);
  background:var(--light-bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Containers & Sections */
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.section{padding:80px 0}
.dark-section{background:var(--dark-bg)}

/* Section headings (icon + underline) */
.section-title{
  font-size:2.3rem;
  text-align:center;
  margin:0 0 40px;
  position:relative;
  font-weight:700;
  color:var(--secondary-color);
}
.section-title .section-icon{color:var(--primary-color);margin-right:10px}
.section-title::after{
  content:"";
  position:absolute;left:50%;bottom:-12px;transform:translateX(-50%);
  width:80px;height:4px;background:var(--primary-color);border-radius:2px;
}

/* Hero */
/* .hero{
  background:url('https://via.placeholder.com/1600x800/2c3e50/ffffff?text=ERP+Integration') center/cover no-repeat;
  position:relative;padding:150px 20px;color:var(--white);text-align:center;
  display:flex;align-items:center;justify-content:center;
}
.hero-overlay{
  position:absolute;inset:0;background:rgba(0,0,0,.6);z-index:1
}
.hero-content{position:relative;z-index:2;max-width:900px}
.headline{
  margin:0 0 14px;font-size:3rem;line-height:1.2;font-weight:800;color:#fff
} */
.overview-text{
  margin:0 auto;max-width:860px;color:rgba(255,255,255,.92);font-size:1.08rem;font-weight:400
}

/* Cards & Grid */
.card{
  background:var(--white);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
}

/* Typography inside cards */
.card h3{
  margin:0 0 10px;
  font-size:1.25rem;
  color:var(--secondary-color);
}
.card p{margin:0;color:var(--light-text)}
.card p + ul{margin-top:10px}

/* Lists */
ul{list-style:none;margin:0;padding:0}
.card ul > li{
  display:flex;align-items:flex-start;gap:10px;
  margin:.45rem 0;color:var(--light-text);font-size:.98rem
}

/* Fancy bullets */
.card ul > li::before{
  content:"";
  width:10px;height:10px;border-radius:3px;margin-top:.45rem;
  background:linear-gradient(135deg,#9ee7ff,var(--primary-color));
  box-shadow:0 0 0 3px rgba(0,123,255,.18);
  flex:0 0 10px;
}

/* Ordered list (Lifecycle-style if you reuse it) */
.card ol{counter-reset:step;list-style:none;margin:0;padding:0}
.card ol li{
  position:relative;padding-left:46px;margin:.55rem 0
}
.card ol li::before{
  counter-increment:step;content:counter(step);
  position:absolute;left:0;top:.1rem;width:30px;height:30px;border-radius:50%;
  display:grid;place-items:center;font-weight:800;color:#0b2550;
  background:linear-gradient(135deg,#79b6ff,var(--primary-color));
  box-shadow:0 6px 14px rgba(0,123,255,.25)
}

/* Icons in paragraphs (optional) */
.list-icon{color:var(--accent-color);margin-right:8px}

/* Links (if used) */
a{color:var(--primary-color);text-decoration:none}
a:hover{text-decoration:underline}

/* Responsive tweaks */
@media (max-width:992px){
  .section{padding:64px 0}
  .headline{font-size:2.5rem}
}
@media (max-width:768px){
  .section{padding:52px 0}
  .headline{font-size:2.15rem}
  .section-title{font-size:2rem}
}
@media (prefers-reduced-motion:reduce){
  .card,.card:hover{transition:none;transform:none}
}




:root{
  --apm-maxw-apm-section: 1200px;
  --apm-gutter-apm-section: clamp(16px, 4vw, 28px);
  --apm-blue-apm-section: #1d4ed8;
  --apm-ink-apm-section: #0f172a;
  --apm-muted-apm-section: #475569;
  --apm-card-bg-apm-section: #ffffff;
  --apm-card-bd-apm-section: rgba(15, 23, 42, 0.08);
  --apm-surface-apm-section: #f6f8fb;
}

/* Section shell */
.core-capabilities-apm-section{
  background: #fff;
  padding: clamp(28px, 6vw, 72px) 0;
}
.wrap-apm-section{
  max-width: var(--apm-maxw-apm-section);
  margin: 0 auto;
  padding: 0 var(--apm-gutter-apm-section);
   text-align: center;                 /* ⬅️ centers heading block */
}

/* Heading */
.title-apm-section{
  display:flex; align-items:center; gap:10px;
  font-weight: 800;
  color: var(--apm-ink-apm-section);
  font-size: clamp(22px, 3vw, 34px);
  margin: 0;
  justify-content: center;  
   margin: 0 auto;   
}
.title-icon-apm-section{
  width:36px; height:36px; border-radius:10px;
  display:grid; place-items:center;
  background:#e7f0ff; color: var(--apm-blue-apm-section);
  font-size:18px;
}
.title-underline-apm-section{
  display:block;
  width:64px; height:4px;
  background: var(--apm-blue-apm-section);
  border-radius:4px;
  margin: 10px auto 18px;       
}

/* Grid: 2 columns per row */
.grid-apm-section{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 24px);
}

/* Card */
.card-apm-section{
  background: var(--apm-card-bg-apm-section);
  border: 1px solid var(--apm-card-bd-apm-section);
  border-radius: 14px;
  padding: clamp(16px, 2.4vw, 22px);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-apm-section:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.icon-apm-section{
  width:44px; height:44px; border-radius:12px;
  background:#e7f0ff; color: var(--apm-blue-apm-section);
  display:grid; place-items:center;
  font-size:20px;
  margin-bottom:10px;
}

.card-title-apm-section{
  margin:0 0 8px;
  font-size: clamp(16px, 2.1vw, 18px);
  font-weight: 800;
  color: var(--apm-ink-apm-section);
}

.card-list-apm-section{
  margin:0; padding-left: 18px;
  color: var(--apm-muted-apm-section);
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.6;
  /* align-items: left;
  text-align: left; */
}

/* Reveal animation */
.reveal-apm-section{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .42s ease, transform .42s ease;
  transition-delay: var(--delay-apm-section, 0ms);
  will-change: opacity, transform;
}
.reveal-apm-section.is-visible-apm-section{
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 780px){
  .grid-apm-section{ grid-template-columns: 1fr; }
  .title-underline-apm-section{ margin-left: 0; }
}
/* --- Hover color variables (tweak to your palette) --- */
:root{
  --apm-hover-bg-apm-section: #eaf2ff;
  --apm-hover-bd-apm-section: #bcd4ff;
  --apm-hover-ink-apm-section: #0b3b91;
  --apm-hover-muted-apm-section: #1e429f;
  --apm-hover-icon-bg-apm-section: #dbe8ff;
  --apm-hover-icon-color-apm-section: #1d4ed8;
}

/* Smooth animate color changes too */
.card-apm-section{
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease;
}

/* Change the card colors on hover/focus */
.card-apm-section:hover,
.card-apm-section:focus-within{
  background: var(--apm-hover-bg-apm-section);
  border-color: var(--apm-hover-bd-apm-section);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* Title + body colors shift */
.card-apm-section:hover .card-title-apm-section,
.card-apm-section:focus-within .card-title-apm-section{
  color: var(--apm-hover-ink-apm-section);
}
.card-apm-section:hover .card-list-apm-section,
.card-apm-section:focus-within .card-list-apm-section{
  color: var(--apm-hover-muted-apm-section);
}

/* Icon tint updates too */
.card-apm-section:hover .icon-apm-section,
.card-apm-section:focus-within .icon-apm-section{
  background: var(--apm-hover-icon-bg-apm-section);
  color: var(--apm-hover-icon-color-apm-section);
}




/* Center the 3rd card on its own row */
.grid-apm-section > .card-apm-section:nth-child(3) {
  grid-column: 1 / -1;          /* take a full row */
  justify-self: center;         /* center within that row */
  width: clamp(300px, 48vw, 560px);  /* keep a nice, card-like width */
}

/* On mobile (1-column) let it behave normally */
@media (max-width: 780px){
  .grid-apm-section > .card-apm-section:nth-child(3){
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
}

/* old css */
/* General Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #1a237e; /* Darker blue for contrast */
    --accent-color: #28a745; /* Green for success/checks */
    --light-bg: #f8f9fa;
    --dark-bg: #e9ecef;
    --text-color: #343a40;
    --light-text: #6c757d;
    --white: #fff;
    --border-radius: 8px;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden; /* For any potential background elements */
}
/* 
h1, h2, h3, h4 {
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
} */

h2 {
    margin: 0 0 10px;
}

h1 {
    font-size: 3.2em;
    line-height: 1.2;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

h2.section-title {
    font-size: 2.5em;
    padding-bottom: 15px;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
    align-items: center;
}

h2.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-icon {
    margin-right: 10px;
    color: var(--primary-color);
}

.section-description {
    text-align: center;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--light-text);
}


.hero {
  position: relative;
  inline-size: 100%;
  min-block-size: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--light-text);
  padding-block: clamp(24px, 8vh, 96px);
  padding-inline: var(--gutter);
  background: url("../images/banner/carl-erp.png") no-repeat center center/cover;
  background-color: var(--dark-bg); /* fallback if image fails to load */
  overflow: hidden;
  isolation: isolate;
}


.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.55));
}

.hero-content {
  position: relative; z-index: 2;
  margin-inline: auto;
  inline-size: min(100%, 1000px);
  display: grid; gap: clamp(10px, 2.2vw, 20px);
  padding-inline: 0; 
}

.overview-text {
    font-size: 1.15em;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Capabilities Section */
.capabilities-section {
    background-color: var(--white);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to the left */
}

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

.card-icon-wrapper {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.card-icon {
    color: var(--white);
    font-size: 1.8em;
}

.card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    text-align: left; /* Align card title to the left */
    color: var(--secondary-color);
}

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

.card li {
    font-size: 0.95em;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    color: var(--light-text);
}

.card li:last-child {
    margin-bottom: 0;
}

.list-icon {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 0.9em;
    position: relative;
    top: 2px;
}

/* Modular Architecture Section */
.modular-architecture-section {
    background-color: var(--dark-bg);
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.arch-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.arch-item:hover {
    background-color: #f0f4f8;
    transform: translateY(-5px);
}

.arch-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.arch-item h4 {
    font-size: 1.25em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.arch-item p {
    font-size: 0.9em;
    color: var(--light-text);
    margin-bottom: 0;
}

.integration-note {
    text-align: center;
    font-style: italic;
    margin-top: 50px;
    color: var(--light-text);
    font-size: 0.95em;
}

/* Security & Compliance Section */
.security-section {
    background-color: var(--white);
}

.security-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-list li {
    font-size: 1.1em;
    color: var(--text-color);
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.list-icon-check {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2em;
}

/* Why Choose CARL Section */
.why-carl-section {
    background-color: var(--dark-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.3em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.why-item p {
    font-size: 0.95em;
    color: var(--light-text);
    margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--secondary-color); /* Use secondary color for darker feel */
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta-title {
    color: var(--white);
    font-size: 2.5em;
    margin-bottom: 25px;
}

.cta-title .section-icon {
    color: var(--primary-color); /* Use primary for icon */
}

.cta-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: clamp(8px, 2.2vw, 16px);
}

/* Base button (same for all three) */
.cta-buttons .btn,
.cta-buttons a{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: clamp(10px, 1.6vw, 14px) clamp(18px, 2.6vw, 24px);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration:none;
  border: 2px solid rgba(255,255,255,.9);
  background: transparent;
  color: var(--light-text);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
  flex: 0 1 auto;
  min-width: max-content;
}

/* Normalize legacy variants so all look identical by default */
.cta-buttons .btn-primary,
.cta-buttons .btn-secondary,
.cta-buttons .btn-tertiary{
  background: transparent !important;
  color: white !important;
  border-color: rgba(255,255,255,.9) !important;
}

/* REMOVE any variant-specific :hover you had before */

/* Unified hover/focus for ALL buttons (wins over globals) */
.cta-buttons .btn:is(:hover, :focus-visible){
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #002a3a !important;   /* readable on blue */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* Small screens: stack cleanly */
@media (max-width: 640px){
  .cta-buttons{ flex-direction: column; align-items: center; }
  .cta-buttons .btn{ width: min(100%, 22rem); }
}
.btn i {
    margin-right: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
}


/* Responsive Design

/* ===== Modular Architecture (architecture) ===== */
:root{
  --arch-maxw-architecture: 1200px;
  --arch-gutter-architecture: clamp(16px, 4vw, 28px);
  --arch-surface-architecture: #eef2f5;
  --arch-blue-architecture: #1d4ed8;
  --arch-title-ink-architecture: #1f2a44;

  --arch-card-bg-architecture: #ffffff;
  --arch-card-bd-architecture: rgba(0,0,0,.08);
  --arch-icon-bg-architecture: #e7f0ff;
  --arch-icon-ink-architecture: #1776ff;

  /* Hover */
  --arch-card-bg-hover-architecture: #eaf2ff;
  --arch-card-bd-hover-architecture: #bcd4ff;
  --arch-title-hover-architecture: #0b3b91;
  --arch-icon-bg-hover-architecture: #dbe8ff;
  --arch-icon-ink-hover-architecture: #1d4ed8;
}

.architecture{
  background: var(--arch-surface-architecture);
  padding: clamp(36px, 7vw, 88px) 0;
}

.arch-wrap-architecture{
  max-width: var(--arch-maxw-architecture);
  margin: 0 auto;
  padding: 0 var(--arch-gutter-architecture);
  text-align: center;
}

/* Title */
.arch-title-architecture{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 800;
  color: var(--arch-title-ink-architecture);
  margin: 0;
}

.arch-titleicon-architecture{
  width:42px; height:42px; border-radius:12px;
  display:grid; place-items:center;
  background:#e4edff; color: var(--arch-icon-ink-architecture);
}

.arch-underline-architecture{
  display:block;
  width:80px; height:4px;
  background: var(--arch-blue-architecture);
  border-radius:4px;
  margin: 12px auto 22px;
}

/* Subheading */
.arch-sub-architecture{
  color:#6b7280;
  font-size: clamp(14px, 1.9vw, 18px);
  margin: 0 auto clamp(22px, 4vw, 36px);
  max-width: 900px;
  line-height: 1.6;
}

/* Grid */
.arch-grid-architecture{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(16px, 2.6vw, 24px);
}

/* Card */
.module-card-architecture{
  background: var(--arch-card-bg-architecture);
  border: 1px solid var(--arch-card-bd-architecture);
  border-radius: 14px;
  padding: clamp(22px, 2.8vw, 28px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition:
    background-color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease,
    color .18s ease;
}

.module-card-architecture:hover,
.module-card-architecture:focus-within{
  background: var(--arch-card-bg-hover-architecture);
  border-color: var(--arch-card-bd-hover-architecture);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(23,118,255,.18);
}

/* Icon */
.module-icon-architecture{
  width:68px; height:68px; border-radius:16px;
  margin: 0 auto 14px;
  display:grid; place-items:center;
  background: var(--arch-icon-bg-architecture);
  color: var(--arch-icon-ink-architecture);
  transition: background-color .18s ease, color .18s ease;
}
.module-card-architecture:hover .module-icon-architecture{
  background: var(--arch-icon-bg-hover-architecture);
  color: var(--arch-icon-ink-hover-architecture);
}

/* Card text */
.module-title-architecture{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: #172554;
  transition: color .18s ease;
}
.module-card-architecture:hover .module-title-architecture{
  color: var(--arch-title-hover-architecture);
}
.module-text-architecture{
  margin: 0;
  color: #475569;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.7;
}

/* Footnote */
.arch-footnote-architecture{
  margin: clamp(24px, 4vw, 36px) auto 0;
  max-width: 980px;
  color:#6b7280;
  font-style: italic;
  font-size: clamp(13px, 1.7vw, 15px);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px){
  .arch-grid-architecture{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .arch-grid-architecture{ grid-template-columns: 1fr; }
}
/* ===== Security & Compliance ===== */
:root{
  --sec-max-security: 1200px;
  --sec-gutter-security: clamp(16px, 4vw, 28px);
  --sec-blue-security: #1d4ed8;
  --sec-ink-security: #0f172a;
  --sec-muted-security: #6b7280;

  --sec-pill-bg-security: #ffffff;
  --sec-pill-bd-security: rgba(0,0,0,.08);
  --sec-pill-hover-bg-security: #f1f5ff;
  --sec-pill-hover-bd-security: #c7d7ff;

  --sec-ico-bg-security: #e7f0ff;
  --sec-ico-ink-security: #1776ff;
}

.security{
  background:#fff;
  padding: clamp(36px, 7vw, 88px) 0;
}
.security-wrap-security{
  max-width: var(--sec-max-security);
  margin: 0 auto;
  padding: 0 var(--sec-gutter-security);
  text-align: center;
}

/* Heading */
.security-title-security{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 800;
  color: var(--sec-ink-security);
}
.security-titleicon-security{
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: #e4edff; color: var(--sec-blue-security);
}
.security-underline-security{
  display:block;
  width: 78px; height: 4px;
  background: var(--sec-blue-security);
  border-radius: 4px;
  margin: 14px auto 22px;
}

/* Subheading */
.security-sub-security{
  margin: 0 auto clamp(22px, 4vw, 34px);
  max-width: 760px;
  color: var(--sec-muted-security);
  font-size: clamp(14px, 1.9vw, 18px);
  line-height: 1.65;
}

/* List */
.security-list-security{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(12px, 2.4vw, 16px);
}
.security-item-security{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;

  background: var(--sec-pill-bg-security);
  border: 1px solid var(--sec-pill-bd-security);
  border-radius: 14px;
  padding: clamp(14px, 2.4vw, 18px);
  max-width: 1040px;
  margin: 0 auto;

  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.security-item-security:hover{
  background: var(--sec-pill-hover-bg-security);
  border-color: var(--sec-pill-hover-bd-security);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(29,78,216,.14);
}

/* Icon chip */
.security-ico-security{
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--sec-ico-bg-security);
  color: var(--sec-ico-ink-security);
}

/* Text */
.security-text-security{
  text-align: left;
  color: #374151;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 560px){
  .security-item-security{ grid-template-columns: 32px 1fr; }
  .security-text-security{ font-size: 15px; }
}
:root{
  --choose-max-choose-carl-apm: 1200px;
  --choose-gutter-choose-carl-apm: clamp(16px, 4vw, 28px);
  --choose-surface-choose-carl-apm: #eef2f5;
  --choose-primary-choose-carl-apm: #1d4ed8;   /* icon/underline blue */
  --choose-ink-choose-carl-apm: #111827;       /* title */
  --choose-muted-choose-carl-apm: #6b7280;     /* body */
  --choose-card-bg-choose-carl-apm: #ffffff;
}

/* Section */
.why-carl-section-choose-carl-apm{
  background: var(--choose-surface-choose-carl-apm);
  padding: clamp(36px, 7vw, 84px) 0;
}
.container-choose-carl-apm{
  max-width: var(--choose-max-choose-carl-apm);
  margin: 0 auto;
  padding: 0 var(--choose-gutter-choose-carl-apm);
}

/* Title */
.section-title-choose-carl-apm{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  text-align: center;
  font-weight: 800;
  color: var(--choose-ink-choose-carl-apm);
  font-size: clamp(24px, 3.2vw, 44px);
}
/* rocket icon — no background */
.section-title-choose-carl-apm .section-icon,
.section-icon-choose-carl-apm{
  color: var(--choose-primary-choose-carl-apm);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1;
}

.section-underline-choose-carl-apm{
  display: block;
  width: 80px; height: 4px;
  border-radius: 4px;
  background: var(--choose-primary-choose-carl-apm);
  margin: 14px auto 26px;
}

/* Grid */
.why-grid-choose-carl-apm{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 24px);
}

/* Card */
.why-item-choose-carl-apm{
  background: var(--choose-card-bg-choose-carl-apm);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 28px);
  text-align: center;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.why-item-choose-carl-apm:hover,
.why-item-choose-carl-apm:focus-within{
  transform: translateY(-4px);
  background: #f7faff;
  border-color: #c7d7ff;
  box-shadow: 0 18px 34px rgba(29,78,216,.14);
}

/* Feature icons — NO background; just Font Awesome color/size */
.why-item-choose-carl-apm .why-icon,
.why-icon-choose-carl-apm{
  color: var(--choose-primary-choose-carl-apm);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  margin-bottom: 12px;
}

/* Text */
.why-item-choose-carl-apm h3{
  margin: 6px 0 10px;
  font-weight: 800;
  color: #14213d;
  font-size: clamp(16px, 2.2vw, 22px);
}
.why-item-choose-carl-apm p{
  margin: 0;
  color: var(--choose-muted-choose-carl-apm);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px){
  .why-grid-choose-carl-apm{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .why-grid-choose-carl-apm{ grid-template-columns: 1fr; }
  .section-title-choose-carl-apm{ font-size: clamp(22px, 6vw, 30px); }
}

/* section work  */
/* ===== CTA Section (mobility) ===== */
:root {
  --cta-bg-mobility: #071626;
  --cta-title-fs-mobility: clamp(22px, 3vw, 32px);
  --cta-text-fs-mobility: clamp(14px, 1.8vw, 16px);
  --cta-green-mobility: #059669;
}

.cta-mobility {
  padding: clamp(40px, 7vw, 80px) 0;
  background: var(--cta-bg-mobility);
  border-radius: 12px;
  text-align: center;
  color: #fff;
  margin: clamp(20px, 4vw, 40px) auto;
  max-width: 1200px;
}

.cta-wrap-mobility {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.cta-title-mobility {
  margin: 0 0 12px;
  font-size: var(--cta-title-fs-mobility);
  font-weight: 700;
  color: white;
}

.cta-text-mobility {
  margin: 0 0 28px;
  font-size: var(--cta-text-fs-mobility);
  color: #d1d5db;
  line-height: 1.6;
}

/* Button */
.cta-btn-mobility {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-green-mobility);
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn-mobility:hover {
  background: #047857;
  transform: translateY(-2px);
}

.cta-dot-mobility {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}
/* Reveal animation */
.reveal-mobility {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
  transition-delay: var(--delay-mobility, 0ms);
  will-change: opacity, transform;
}

.reveal-mobility.is-visible-mobility {
  opacity: 1;
  transform: none;
}

/* --- Offline Section --- */
.offline {
    background-color: #1a237e;
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.offline h2 {
    color: var(--white);
    font-size: 2em;
    margin-top: 20px;
}

.offline-icon {
    font-size: 4em;
    color: var(--primary-color);
}

.offline-content p {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Add-ons Section --- */
.add-ons {
    background-color: var(--white);
}

.add-ons-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.add-on-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.add-on-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.add-on-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}
