/* assets/css/about.css?v=1.1 — cleaned spacing, no cut buttons, consistent containers */

/* Tokens */
:root{
  --ink: rgba(2, 6, 23, .92);
  --muted: rgba(2, 6, 23, .66);
  --line: rgba(15, 23, 42, .12);
  --bg: #ffffff;

  --a: #2bc4e3;
  --y: #ffd24a;
  --y2:#ffbf1f;

  --r: 18px;
  --ease: cubic-bezier(.2,.9,.2,1);

  --shadow: 0 22px 70px rgba(2, 6, 23, .14);
  --shadow2: 0 16px 44px rgba(2, 6, 23, .10);

  --wrap: 1160px;
  --px: clamp(16px, 3vw, 28px);

  --tap: 44px;
}

/* Base */
*,
*::before,
*::after{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; }
:focus-visible{ outline: 2px solid rgba(43,196,227,.55); outline-offset: 3px; border-radius: 12px; }

.about-main{ min-height: 70vh; }

.container{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* HERO */
.about-hero{
  position: relative;
  padding: clamp(28px, 4vw, 44px) 0 clamp(34px, 5.5vw, 72px);
  overflow: clip;
  background:
    radial-gradient(900px 520px at 15% 12%, rgba(43,196,227,.14), transparent 60%),
    radial-gradient(880px 520px at 86% 18%, rgba(255,210,74,.20), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 60%, #ffffff 100%);
}

.about-hero::before{
  content:"";
  position:absolute; inset:-1px;
  background:
    linear-gradient(90deg, rgba(255,210,74,.18), transparent 42%),
    linear-gradient(180deg, rgba(2,6,23,.06), transparent 32%);
  pointer-events:none;
  opacity:.95;
}

.about-hero__wrap{
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(16px, 2.2vw, 26px);
  align-items: start;
}

.about-hero__copy{ min-width: 0; }
.about-hero__panel{ min-width: 0; display: flex; }

.about-hero__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(2,6,23,.74);
  margin: 0 0 12px;
}

.about-hero__kicker::before{
  content:"";
  width: 28px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--y), var(--a));
  box-shadow: 0 10px 30px rgba(255,210,74,.30);
}

.about-hero__title{
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  font-weight: 950;
}

.about-hero__sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
  max-width: 62ch;
}

/* Actions */
.about-hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 0 14px;
}

.abt-btn{
  -webkit-tap-highlight-color: transparent;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.88);
  color: var(--ink);
  text-decoration: none;

  padding: 12px 14px;
  min-height: var(--tap);

  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
  box-shadow: 0 14px 40px rgba(2,6,23,.08);

  /* critical: prevent cut text and allow wrap */
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow: visible;
}

.abt-btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
  border-color: rgba(43,196,227,.28);
}

.abt-btn:active{ transform: translateY(0); }

.abt-btn--primary{
  padding: 14px 16px;
  border: 1px solid rgba(2,6,23,.10);
  background:
    radial-gradient(140px 90px at 14% 18%, rgba(255,255,255,.60), transparent 70%),
    linear-gradient(135deg, var(--y), var(--y2));
  box-shadow: 0 22px 70px rgba(255,191,31,.26);

  /* critical: do NOT force huge width (was cutting on some layouts) */
  flex: 1 1 280px;
  max-width: 520px;
}

.abt-btn__top{
  display: block;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(2,6,23,.76);
  line-height: 1.15;
}

.abt-btn__main{
  display: block;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.abt-btn__sub{
  display: block;
  font-size: 12px;
  color: rgba(2,6,23,.72);
  font-weight: 800;
  line-height: 1.25;
}

.abt-btn--ghost{
  flex: 0 1 auto;
  background: rgba(255,255,255,.82);
}

/* Trust pills */
.about-hero__trust{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.abt-pill{
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.82);
  color: rgba(2,6,23,.82);
  font-weight: 900;
  font-size: 12px;
  line-height: 1.1;
}

/* Right Panel */
.abt-panel{
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.12);
  background:
    radial-gradient(320px 240px at 92% 16%, rgba(43,196,227,.14), transparent 62%),
    radial-gradient(280px 240px at 18% 10%, rgba(255,210,74,.22), transparent 62%),
    rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.abt-panel::after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(90deg, rgba(255,210,74,.18), transparent 40%, rgba(43,196,227,.12));
  opacity:.6;
  pointer-events:none;
}

.abt-panel__head{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.abt-panel__title{
  font-weight: 950;
  letter-spacing: -0.02em;
}

.abt-panel__badge{
  font-weight: 950;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.12);
  background: rgba(255,255,255,.74);
  white-space: nowrap;
}

.abt-panel__list{
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 12px 0 12px;
  display: grid;
  gap: 10px;
}

.abt-panel__list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(2,6,23,.82);
  font-weight: 750;
  line-height: 1.45;
}

.dot{
  width: 9px; height: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--y), var(--a));
  box-shadow: 0 10px 26px rgba(255,210,74,.30);
  margin-top: 6px;
  flex: 0 0 auto;
}

.abt-panel__cta{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 12px;
  min-height: var(--tap);

  border-radius: 14px;
  text-decoration: none;
  font-weight: 950;
  color: rgba(2,6,23,.92);
  border: 1px solid rgba(2,6,23,.10);
  background:
    radial-gradient(140px 90px at 14% 28%, rgba(255,255,255,.62), transparent 72%),
    linear-gradient(135deg, rgba(255,210,74,.94), rgba(255,191,31,.94));
  box-shadow: 0 20px 55px rgba(255,191,31,.20);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.abt-panel__cta:hover{ transform: translateY(-2px); box-shadow: 0 26px 70px rgba(255,191,31,.22); }
.abt-panel__cta:active{ transform: translateY(0); }

.abt-panel__mini{
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: rgba(2,6,23,.66);
  font-weight: 750;
  font-size: 13px;
  line-height: 1.45;
}

/* Sections */
.about-section{
  padding: clamp(52px, 6vw, 88px) 0;
  background: #fff;
}

.about-section:nth-of-type(even){
  background:
    radial-gradient(900px 520px at 10% 20%, rgba(43,196,227,.08), transparent 60%),
    radial-gradient(820px 520px at 90% 20%, rgba(255,210,74,.10), transparent 60%),
    #ffffff;
}

.sec-head{
  max-width: 78ch;
  margin: 0 0 18px;
}

.sec-title{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.03em;
  font-weight: 950;
  line-height: 1.15;
}

.sec-sub{
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

/* Grids */
.why-grid,
.what-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 18px;
}

/* Cards */
.why-card,
.what-card,
.area-card,
.step{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.88);
  padding: 16px;
  box-shadow: 0 14px 44px rgba(2,6,23,.08);
  min-width: 0; /* critical */
}

.why-card{ grid-column: span 6; }
.why-card--wide{ grid-column: span 12; }

.why-card h3,
.what-card h3,
.area-card h3,
.step-b h3{
  margin: 0 0 8px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.why-card p,
.what-card p,
.area-card p,
.step-b p{
  margin: 0;
  color: rgba(2,6,23,.70);
  font-weight: 650;
  line-height: 1.5;
}

.what-card{
  grid-column: span 6;
  background:
    radial-gradient(260px 180px at 90% 10%, rgba(255,210,74,.18), transparent 60%),
    radial-gradient(260px 180px at 20% 18%, rgba(43,196,227,.10), transparent 60%),
    rgba(255,255,255,.88);
  box-shadow: 0 16px 52px rgba(2,6,23,.09);
}

.what-card p{ margin: 0 0 10px; }

.what-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 950;
  color: rgba(2,6,23,.92);
  border-bottom: 2px solid rgba(255,191,31,.65);
  padding-bottom: 2px;
}

/* Process */
.process-steps{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.step{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-n{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  background: linear-gradient(135deg, var(--y), var(--y2));
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: 0 18px 46px rgba(255,191,31,.20);
  flex: 0 0 auto;
}

.step-b{ min-width: 0; }

/* Service Area */
.area-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  margin-top: 18px;
  align-items: start;
}

.area-cards{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.area-card{ grid-column: span 6; }
.area-card:nth-child(3){ grid-column: span 12; }

.area-call{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 1000;
  color: rgba(2,6,23,.92);
  padding: 10px 12px;
  min-height: var(--tap);
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.10);
  background:
    radial-gradient(140px 90px at 14% 25%, rgba(255,255,255,.58), transparent 72%),
    linear-gradient(135deg, rgba(255,210,74,.92), rgba(255,191,31,.92));
  box-shadow: 0 20px 55px rgba(255,191,31,.18);
}

.area-map{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow2);
  overflow: hidden;
  min-width: 0;
}

.area-map__top{
  padding: 12px 12px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(15,23,42,.10);
}

.area-map__title{ font-weight: 1000; letter-spacing: -0.02em; }

.area-map__pill{
  font-weight: 950;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.12);
  background: rgba(255,255,255,.74);
  white-space: nowrap;
}

.area-map__frame{
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  background: #eee;
  overflow: hidden;
}

.area-map__frame iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

.area-ring{
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  border: 2px solid rgba(255,210,74,.55);
  box-shadow: 0 0 0 10px rgba(255,210,74,.10);
  pointer-events: none;
}

/* CTA */
.cta-shell{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.12);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(255,210,74,.18), transparent 60%),
    radial-gradient(900px 520px at 85% 20%, rgba(43,196,227,.12), transparent 60%),
    rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  padding: clamp(16px, 2.6vw, 24px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: start;
}

.cta-copy{ min-width: 0; }

.cta-title{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 1000;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cta-sub{
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.cta-points{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.cta-points li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 800;
  color: rgba(2,6,23,.82);
  line-height: 1.45;
}

.cta-actions{
  display: grid;
  gap: 12px;
  justify-items: start;
  align-content: start;
  min-width: 0;
}

.cta-btn{
  width: 100%;
  max-width: 520px;
  text-decoration: none;
  border-radius: 18px;
  padding: 14px 16px;
  min-height: var(--tap);

  border: 1px solid rgba(2,6,23,.10);
  background:
    radial-gradient(140px 90px at 14% 18%, rgba(255,255,255,.60), transparent 72%),
    linear-gradient(135deg, var(--y), var(--y2));
  box-shadow: 0 22px 70px rgba(255,191,31,.26);
  color: rgba(2,6,23,.92);
  font-weight: 1000;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.cta-btn:hover{ transform: translateY(-2px); box-shadow: 0 28px 80px rgba(255,191,31,.25); }
.cta-btn:active{ transform: translateY(0); }

.cta-btn-top{
  display: block;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(2,6,23,.76);
}

.cta-btn-main{ display: block; font-size: 20px; line-height: 1.18; letter-spacing: -0.02em; }
.cta-btn-sub{ display: block; font-size: 12px; color: rgba(2,6,23,.72); font-weight: 850; line-height: 1.25; }

.cta-trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.82);
  color: rgba(2,6,23,.82);
  font-weight: 950;
  font-size: 12px;
  line-height: 1.1;
}

/* Responsive */
@media (max-width: 980px){
  .about-hero__wrap{ grid-template-columns: 1fr; }
  .area-grid{ grid-template-columns: 1fr; }
  .cta-shell{ grid-template-columns: 1fr; }
  .cta-actions{ justify-items: stretch; }
  .cta-btn{ max-width: 100%; }
}

@media (max-width: 720px){
  .why-card{ grid-column: span 12; }
  .what-card{ grid-column: span 12; }
  .area-card{ grid-column: span 12; }

  .about-hero__actions{ gap: 10px; }
  .abt-btn--primary{ flex-basis: 100%; max-width: 100%; }
  .abt-btn--ghost{ flex-basis: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior: auto !important; }
}