/* --- About Hero Specific Styles --- */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 85vh; /* Large, airy feel */
    display: flex;
    align-items: center;
    background-color: #0a192f;
    overflow: hidden;
}

.about-hero__image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* Replace with generated image path */
    background-image: url('../images/redesign/about/technician-copy.jpg');
    background-size: cover;
    background-position: center right;
    z-index: 1;
}

.about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Navy gradient fading from 95% opacity on left to transparent on right */
    background: linear-gradient(
        90deg, 
        rgba(10, 25, 47, 1) 0%, 
        rgba(10, 25, 47, 0.9) 30%, 
        rgba(10, 25, 47, 0.4) 70%, 
        rgba(10, 25, 47, 0) 100%
    );
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.about-hero__content {
    max-width: 650px;
}

.about-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
    opacity: 0.9;
}

.about-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: #ffffff;
    margin-bottom: 24px;
}

.about-subheadline {
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 400;
    line-height: 1.5;
    color: #a8b2d1; /* Muted Apple-style gray */
    margin-bottom: 40px;
    max-width: 520px;
}

/* --- Apple-Style Subtle Buttons --- */
.about-actions {
    display: flex;
    gap: 16px;
}

.btn-apple-primary {
    background: var(--cyan);
    color: #0a192f;
    padding: 12px 28px;
    border-radius: 980px; /* Fully rounded pill */
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-apple-primary:hover {
    transform: scale(1.03);
    background: #33f5ff;
}

.btn-apple-secondary {
    background: transparent;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 980px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-apple-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
        text-align: center;
    }
    
    .about-hero__overlay {
        background: linear-gradient(
            0deg, 
            rgba(10, 25, 47, 1) 40%, 
            rgba(10, 25, 47, 0.6) 100%
        );
    }
    
    .about-hero__content {
        margin: 0 auto;
    }
    
    .about-actions {
        justify-content: center;
        flex-direction: column;
    }
}/* --- Editorial Layout Variables --- */
:root {
    --bg-navy: #0a192f;
    --text-white: #ffffff;
    --text-muted: #a8b2d1;
    --cyan: #00f2ff;
}

.about-page {
    background-color: var(--bg-navy);
    padding: 100px 0;
}

/* --- Section Layout --- */
.editorial-section {
    padding: 120px 0;
    overflow: hidden;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.editorial-section--reverse .editorial-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.editorial-section--reverse .editorial-image-wrapper {
    grid-order: 2; /* Moves image to right on desktop */
    order: 2;
}

/* --- Typography --- */
.micro-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
    opacity: 0.8;
}

.editorial-title {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.editorial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 480px;
}

.editorial-list {
    margin-top: 30px;
    list-style: none;
    color: var(--text-white);
    font-weight: 600;
}

.editorial-list li::before {
    content: "✓";
    color: var(--cyan);
    margin-right: 12px;
}

/* --- Image Blending (The "Apple" Look) --- */
.editorial-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) saturate(1.1);
}

/* Feather edges into the background */
.feather-right {
    -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
    mask-image: linear-gradient(to right, black 70%, transparent 100%);
}

.feather-left {
    -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
    mask-image: linear-gradient(to left, black 70%, transparent 100%);
	
	
}


/* --- Responsive --- */
@media (max-width: 992px) {
    .editorial-grid, .editorial-section--reverse .editorial-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .editorial-section--reverse .editorial-image-wrapper {
        order: -1; /* Image stays on top for mobile */
    }

    .editorial-text {
        margin: 0 auto;
    }

    .feather-right, .feather-left {
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }
}
/* =========================
   CM TRUST SECTION (Apple-ish)
   ========================= */

.cm-trust__card{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 520px;

  /* image */
  background-image: var(--cm-trust-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* subtle depth */
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
}

/* very soft vignette + readability gradient (no neon, no strong glass) */
.cm-trust__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 520px at 50% 10%, rgba(0,0,0,.10), rgba(0,0,0,.45) 70%),
    linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.18) 40%, rgba(0,0,0,.38));
}

/* content */
.cm-trust__content{
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 520px;
  padding: 64px 56px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;

  /* keep text readable even on bright photos */
  color: rgba(255,255,255,.92);
}

.cm-trust__title{
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;

  /* fluid sizing */
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}

.cm-trust__text{
  margin: 0;
  max-width: 740px;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.80);
  
  /* ====== Responsive ====== */
@media (max-width: 980px){
  .cm-footer__inner{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px){
  .cm-footer__inner{
    grid-template-columns: 1fr;
    padding: 44px 18px 30px;
  }
  .cm-footer__bottomInner{
    padding: 16px 18px 20px;
  }
}
/* =========================================================
   MOBILE RESPONSIVE — Areas Footer + Site Footer (CM)
   Paste at the END of style.css
   ========================================================= */

/* ---------- Areas footer (default small improvements, safe) ---------- */
.areas-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.areas-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Footer layout (ensure grid behaves) ---------- */
.cm-footer__inner {
  display: grid;
  gap: 40px;
}

/* =========================
   TABLET (<= 980px)
   ========================= */
@media (max-width: 980px) {
  /* Areas footer */
  .areas-footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .areas-actions {
    justify-content: center;
    width: 100%;
  }

  /* CM footer: 2 columns */
  .cm-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Brand/about takes full width (reads better) */
  .cm-footer__brand {
    grid-column: 1 / -1;
  }

  /* Make contact cards breathe */
  .cm-footer__contact li {
    padding: 12px 12px;
  }

  /* Bottom bar stacks nicely if it starts wrapping */
  .cm-footer__bottomInner {
    gap: 10px;
  }
}

/* =========================
   MOBILE (<= 640px)
   ========================= */
@media (max-width: 640px) {
  /* Areas footer */
  .areas-footer {
    padding-top: 18px;
  }

  .areas-footer p {
    margin: 0;
    max-width: 34ch;
  }

  .areas-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 520px;
  }

  /* Make buttons tappable */
  .areas-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  /* CM footer: 1 column */
  .cm-footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 44px 18px 30px;
  }

  /* Logo block: center align for a premium mobile feel */
  .cm-footer__logo {
    justify-content: center;
    text-align: center;
  }

  .cm-footer__logoText {
    text-align: left; /* keeps it elegant next to logo */
  }

  .cm-footer__about {
    margin-bottom: 12px;
  }

  /* Lists: tighter, more scannable */
  .cm-footer__list {
    gap: 8px;
  }

  .cm-footer__list a {
    padding: 6px 0;
  }

  /* Contact: full width, comfortable taps */
  .cm-footer__contact {
    gap: 12px;
  }

  .cm-footer__contact li {
    border-radius: 14px;
    padding: 12px 12px;
  }

  .cm-footer__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  /* Footer CTA buttons in contact column */
  .cm-footer__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cm-footer__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 44px;
  }

  /* Bottom bar: stack + center */
  .cm-footer__bottomInner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 16px 18px 20px;
    gap: 6px;
  }

  .cm-footer__copy,
  .cm-footer__cac {
    margin: 0;
  }
}

/* =========================
   SMALL MOBILE (<= 420px)
   ========================= */
@media (max-width: 420px) {
  .cm-footer__inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cm-footer__title {
    margin-bottom: 12px;
  }

  .cm-footer__logoImg {
    height: 40px;
  }

  .cm-footer__logoText {
    font-size: 16px;
    letter-spacing: 0.10em;
  }

  .cm-footer__about {
    font-size: 13px;
    line-height: 1.6;
  }

  .cm-footer__value {
    font-size: 13.5px;
  }

    .hero-brand-typing {
        font-size: 14px;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: rgba(180,240,255,0.85);
        margin-bottom: 12px;
    }
}