:root {
      --brand-bg: #BDC6C7;
      --brand-surface: #C7CFD1;
      --brand-primary: #1E1E1E;
      --brand-accent: #4C5C68;
      --brand-muted: #7C8A92;
      --brand-highlight: #D3DBDD;

      --radius-lg: 1rem;
      --radius-xl: 1.25rem;
      --shadow-soft: 0 8px 20px rgba(0,0,0,0.06);
      --transition-fast: 0.2s ease;
      --header-height: 60px;
    }

    * { box-sizing:border-box; margin:0; padding:0; }
    html, body { height:100%; }
    html { 
      scroll-behavior:smooth; 
      scroll-padding-top: calc(var(--header-height) + 20px);
    }

    body {
      font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:var(--brand-bg);
      color:var(--brand-primary);
      -webkit-font-smoothing:antialiased;
    }

    body.no-scroll { overflow: hidden; height: 100vh; }

    /* Custom Scrollbar */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--brand-bg); }
    ::-webkit-scrollbar-thumb { background: var(--brand-muted); border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--brand-accent); }

    img { max-width:100%; display:block; }
    a { color:inherit; text-decoration:none; }
    button { font-family:inherit; cursor:pointer; border:none; background:none; }

    .container {
      max-width:1120px;
      margin:0 auto;
      padding:0 16px;
    }

    .page-shell { min-height:100vh; display:flex; flex-direction:column; }
    main { flex:1; }

    /* HEADER / NAV */
    .site-header {
      position:sticky;
      top:0;
      z-index:40;
      background:rgba(199,207,209,0.96);
      backdrop-filter:blur(10px);
      border-bottom:1px solid var(--brand-highlight);
    }
    .nav-inner {
      height:var(--header-height);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .nav-brand {
      font-family:'Poppins',sans-serif;
      font-weight:700;
      font-size:1.1rem;
      letter-spacing:0.02em;
      color:var(--brand-primary);
      padding:4px 6px;
      border-radius:6px;
      transition:opacity var(--transition-fast);
    }
    .nav-brand:hover { opacity:0.85; }

    .nav-links-desktop {
      display:flex;
      align-items:center;
      gap:24px;
      font-size:0.9rem;
      flex:1;
      justify-content:center;
    }
    .nav-link {
      position:relative;
      padding:6px 4px;
      font-family:'Poppins',sans-serif;
      font-weight:600;
      border-radius:6px;
      transition:color var(--transition-fast);
    }
    .nav-link::after {
      content:"";
      position:absolute;
      left:0;
      bottom:-3px;
      width:100%;
      height:2px;
      border-radius:999px;
      background:var(--brand-primary);
      transform-origin:left;
      transform:scaleX(0);
      transition:transform var(--transition-fast);
    }
    .nav-link:hover::after,
    .nav-link:focus-visible::after { transform:scaleX(1); }

    .nav-link--active::after {
      transform:scaleX(1);
    }

    .nav-right {
      display:flex;
      align-items:center;
      gap:8px;
    }

    .lang-select {
      background:rgba(199,207,209,0.95);
      border:1px solid var(--brand-highlight);
      border-radius:999px;
      padding:4px 10px;
      font-size:0.82rem;
      outline:none;
      min-width:70px;
      font-weight:500;
    }
    .lang-select:focus {
      box-shadow:0 0 0 2px rgba(76,92,104,0.25);
    }

    .nav-mobile-toggle {
      display:none;
      width:40px;
      height:40px;
      border-radius:14px;
      border:1px solid var(--brand-highlight);
      background:var(--brand-surface);
      align-items:center;
      justify-content:center;
      transition:transform var(--transition-fast), background var(--transition-fast);
    }
    .nav-mobile-toggle:active { transform:scale(0.96); }
    .nav-mobile-toggle:hover { background:#d3dadc; }

    .nav-burger {
      width:19px;
      height:2px;
      background:var(--brand-primary);
      position:relative;
      transition:background var(--transition-fast);
    }
    .nav-burger::before,
    .nav-burger::after {
      content:"";
      position:absolute;
      left:0;
      width:19px;
      height:2px;
      background:var(--brand-primary);
      transition:transform var(--transition-fast), opacity var(--transition-fast);
    }
    .nav-burger::before { top:-6px; }
    .nav-burger::after { top:6px; }

    .nav-mobile-toggle.is-open .nav-burger { background:transparent; }
    .nav-mobile-toggle.is-open .nav-burger::before {
      transform:translateY(6px) rotate(45deg);
    }
    .nav-mobile-toggle.is-open .nav-burger::after {
      transform:translateY(-6px) rotate(-45deg);
    }

    /* Mobile Menu Logic */
    .nav-links-mobile {
      display:none;
      border-top:1px solid var(--brand-highlight);
      background:rgba(199,207,209,0.98);
    }
    .nav-links-mobile.is-visible {
      display:block;
      max-height:100vh;
      overflow-y:auto;
      animation: fadeIn 0.3s ease;
    }
    @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

    .nav-links-mobile-inner {
      padding:8px 0 12px;
      display:flex;
      flex-direction:column;
    }
    .nav-link-mobile {
      text-align:left;
      padding:12px 4px;
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:0.95rem;
      border-bottom:1px solid rgba(0,0,0,0.04);
    }
    .nav-link-mobile:last-child { border-bottom:none; }

    /* GENERIC SECTIONS */
    .section {
      padding:40px 0;
      border-bottom:1px solid var(--brand-highlight);
    }
    .section--no-border { border-bottom:none; }

    .section-title {
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:1.4rem;
      margin-bottom:12px;
      line-height: 1.3;
    }
    .section-subtitle {
      color:var(--brand-muted);
      font-size:0.9rem;
      margin-bottom:20px;
      max-width:640px;
      line-height: 1.6;
    }

    /* ABOUT HERO */
    .about-hero {
      padding-top:32px;
      padding-bottom:32px;
      display:grid;
      gap:24px;
      align-items:center;
    }
    @media(min-width:768px){
      .about-hero {
        grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);
      }
    }
    .about-hero-title {
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:1.9rem;
      line-height:1.25;
      max-width:640px;
    }
    .about-hero-text {
      margin-top:10px;
      color:var(--brand-muted);
      font-size:0.95rem;
      line-height:1.6;
      max-width:640px;
    }

    .story-label {
      font-size:0.75rem;
      font-weight:600;
      text-transform:uppercase;
      letter-spacing:0.08em;
      color:var(--brand-muted);
      margin-bottom:6px;
      display:inline-flex;
      align-items:center;
      gap:6px;
    }

    .icon-bubble {
      width:22px;
      height:22px;
      border-radius:999px;
      background:rgba(0,0,0,0.07);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:0.9rem;
    }

    .about-meta-row {
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .about-meta-pill {
      padding:6px 12px;
      border-radius:999px;
      border:1px solid var(--brand-highlight);
      background:var(--brand-surface);
      font-size:0.8rem;
      font-weight:500;
      display:inline-flex;
      align-items:center;
      gap:6px;
    }

    .about-hero-visual {
      background:var(--brand-surface);
      border-radius:var(--radius-xl);
      border:1px solid var(--brand-highlight);
      padding:16px;
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
    }
    .about-hero-visual img {
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,0.5);
      box-shadow:0 10px 30px rgba(0,0,0,0.18);
      width: 100%;
      height: auto;
    }
    .about-hero-tag {
      position:absolute;
      left:16px;
      top:16px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(76,92,104,0.08);
      font-size:0.75rem;
      font-weight:600;
      color:var(--brand-accent);
      z-index: 2;
    }
    .about-hero-note {
      position:absolute;
      right:16px;
      bottom:16px;
      padding:10px 12px;
      border-radius:12px;
      background:rgba(189,198,199,0.96);
      font-size:0.78rem;
      line-height:1.5;
      max-width:220px;
      z-index: 2;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* STORY & VALUES LAYOUT */
    .story-layout {
      display:grid;
      gap:24px;
    }
    @media(min-width:900px){
      .story-layout {
        grid-template-columns:minmax(0,1.15fr) minmax(0,0.9fr);
      }
    }
    .story-block {
      background:var(--brand-surface);
      border-radius:var(--radius-xl);
      border:1px solid var(--brand-highlight);
      padding:24px;
    }

    /* TIMELINE */
    .story-timeline {
      position:relative;
      padding-left:18px;
      margin-top:6px;
      list-style:none;
    }
    .story-timeline::before {
      content:"";
      position:absolute;
      left:5px;
      top:4px;
      bottom:4px;
      width:2px;
      border-radius:999px;
      background:rgba(76,92,104,0.35);
    }
    .story-item {
      position:relative;
      padding-left:16px;
      margin-bottom:24px;
    }
    .story-item:last-child { margin-bottom:0; }
    .story-dot {
      position:absolute;
      left:-5px;
      top:5px;
      width:10px;
      height:10px;
      border-radius:999px;
      background:var(--brand-primary);
      box-shadow:0 0 0 3px rgba(76,92,104,0.20);
    }
    .story-item-title {
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:1rem;
      color: var(--brand-primary);
    }
    .story-item-meta {
      font-size:0.78rem;
      color:var(--brand-muted);
      margin-top:2px;
      font-weight: 500;
    }
    .story-item-text {
      font-size:0.88rem;
      margin-top:6px;
      color:rgba(30,30,30,0.9);
      line-height:1.6;
    }

    /* VALUES BLOCK FIXES */
    .values-intro {
      font-size:0.9rem;
      color:var(--brand-muted);
      margin-bottom:20px;
      line-height:1.6;
      max-width:520px;
    }

    .values-grid {
      display:grid;
      gap:16px;
      /* Responsive Grid with Min-Width for better fit */
      grid-template-columns: 1fr;
    }
    @media(min-width:600px){
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media(min-width:1100px){
      /* Keep 2 columns on mid-size, 3 on very large if desired, but 2 looks good in sidebar */
      grid-template-columns: repeat(2, 1fr); 
    }

    /* FIXED VALUE CARD CSS */
    .value-card {
      border-radius: 18px;
      border: 1px solid var(--brand-highlight);
      background: var(--brand-surface);
      padding: 20px 18px;
      font-size: 0.88rem;
      display: flex;
      flex-direction: column;
      gap: 12px;
      line-height: 1.55;
      height: 100%; /* Ensures equal height */
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    }
    .value-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-soft);
      border-color: #c1cbcd;
      background: #d4dcde;
    }

    .value-card-header {
      display: flex;
      align-items: flex-start; /* Aligns icon to top, handles multi-line titles */
      gap: 12px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      color: var(--brand-primary);
      line-height: 1.3;
    }

    .value-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: rgba(255,255,255,0.4);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0; /* Prevents icon squashing */
      margin-top: -2px; /* Visual alignment */
    }
    .value-icon svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .value-text {
      color: rgba(30,30,30,0.85);
      flex: 1; /* Pushes content to fill height appropriately */
    }

    /* STATS */
    .stats-row {
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:12px;
    }
    .stat-pill {
      padding:12px 14px;
      border-radius:14px;
      border:1px solid var(--brand-highlight);
      background:var(--brand-surface);
      flex: 1 1 140px; /* Flex-grow to fill space */
      min-width:140px;
    }
    .stat-big {
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:1.1rem;
    }
    .stat-label {
      margin-top:2px;
      color:var(--brand-muted);
      font-size:0.78rem;
    }

    /* SERVICES */
    .service-layout {
      display:grid;
      gap:24px;
    }
    @media(min-width:768px){
      .service-layout {
        grid-template-columns:repeat(3,minmax(0,1fr));
      }
    }
    .service-card {
      background:var(--brand-surface);
      border-radius:var(--radius-xl);
      border:1px solid var(--brand-highlight);
      padding:24px;
      display:flex;
      flex-direction:column;
      gap:12px;
      height:100%;
      line-height:1.6;
    }
    .service-tag {
      font-size:0.75rem;
      font-weight:600;
      color:var(--brand-accent);
      text-transform:uppercase;
      letter-spacing:0.08em;
    }
    .service-title {
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:1.1rem;
    }
    .service-list {
      margin-left:16px;
      font-size:0.9rem;
      color:rgba(30,30,30,0.9);
      margin-top: 4px;
    }
    .service-list li {
      margin-bottom: 6px;
    }

    /* CTA BAND */
    .cta-band {
      margin-top:24px;
      border-radius:var(--radius-xl);
      border:1px solid var(--brand-highlight);
      background:linear-gradient(135deg, #c7cfd1 0%, #dde4e6 50%, #c0c9cb 100%);
      padding:24px;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:16px;
      justify-content:space-between;
    }
    .cta-title {
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:1.1rem;
      max-width: 600px;
    }
    .cta-sub {
      font-size:0.9rem;
      color:var(--brand-muted);
      margin-top:4px;
    }

    /* BUTTONS */
    .btn {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:10px 20px;
      border-radius:10px;
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:0.9rem;
      border:1px solid transparent;
      transition:all var(--transition-fast);
      cursor: pointer;
    }
    .btn:active { transform:scale(0.96); }
    .btn-primary {
      background:var(--brand-primary);
      color:#ffffff;
      border-color:rgba(76,92,104,0.4);
    }
    .btn-primary:hover {
      background:var(--brand-accent);
      box-shadow:var(--shadow-soft);
    }
    .btn-secondary {
      background:var(--brand-surface);
      color:var(--brand-primary);
      border-color:var(--brand-highlight);
    }
    .btn-secondary:hover {
      background:#d4dbdd;
      box-shadow:var(--shadow-soft);
    }

    /* WHATSAPP FLOAT BUTTON */
    .whatsapp-help-btn {
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:50;
      background:#25D366;
      color:#ffffff;
      border-radius:999px;
      padding:10px 18px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:0.88rem;
      box-shadow:0 12px 25px rgba(0,0,0,0.18);
      border:none;
      transition:transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    }
    .whatsapp-help-btn span:first-child{
      width:22px;
      height:22px;
      border-radius:999px;
      background:rgba(0,0,0,0.15);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:0.9rem;
      font-weight: 700;
    }
    .whatsapp-help-btn:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 30px rgba(0,0,0,0.24);
      background:#1ebe5b;
    }

    /* BACK TO TOP */
    .back-to-top {
      position:fixed;
      right:18px;
      bottom:76px;
      padding:8px 14px;
      border-radius:999px;
      border:1px solid var(--brand-highlight);
      background:var(--brand-surface);
      font-size:0.8rem;
      color:var(--brand-primary);
      box-shadow:var(--shadow-soft);
      opacity:0;
      pointer-events:none;
      transition:opacity var(--transition-fast), transform var(--transition-fast);
      z-index:40;
    }
    .back-to-top.is-visible {
      opacity:1;
      pointer-events:auto;
      transform:translateY(0);
    }

    .site-footer {
      border-top:1px solid var(--brand-highlight);
      background:rgba(199,207,209,0.98);
      padding:24px 0;
      font-size:0.85rem;
      color:rgba(30,30,30,0.8);
    }
    .footer-inner {
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
      align-items:center;
    }

    /* MODAL */
    .modal {
      position:fixed;
      inset:0;
      display:none;
      align-items:center;
      justify-content:center;
      z-index:60;
    }
    .modal--open { display:flex; }
    .modal-backdrop {
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.35);
      backdrop-filter: blur(2px);
    }
    .modal-dialog {
      position:relative;
      z-index:1;
      width:100%;
      max-width:440px;
      background:var(--brand-surface);
      border-radius:var(--radius-xl);
      border:1px solid var(--brand-highlight);
      box-shadow:0 18px 45px rgba(0,0,0,0.18);
      padding:24px;
      margin: 16px;
      animation:modalIn 0.25s ease-out forwards;
    }
    .modal-header {
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:16px;
    }
    .modal-title {
      font-family:'Poppins',sans-serif;
      font-weight:600;
      font-size:1.1rem;
    }
    .modal-close {
      width:32px;
      height:32px;
      border-radius:999px;
      border:1px solid var(--brand-highlight);
      background:var(--brand-surface);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:1.1rem;
      transition:background var(--transition-fast), transform var(--transition-fast);
      cursor: pointer;
    }
    .modal-close:hover {
      background:#d4dbdd;
      transform:scale(1.05);
    }
    .form-group { margin-bottom:14px; text-align:left; }
    .form-label {
      display:block;
      font-size:0.85rem;
      font-weight:500;
      margin-bottom:6px;
    }
    .form-input,
    .form-textarea {
      width:100%;
      border-radius:10px;
      border:1px solid var(--brand-highlight);
      padding:10px 12px;
      font-size:0.9rem;
      font-family:inherit;
      outline:none;
      background:#dde4e6;
      transition:border-color var(--transition-fast),
                 box-shadow var(--transition-fast),
                 background var(--transition-fast);
    }
    .form-input:focus,
    .form-textarea:focus {
      border-color:var(--brand-accent);
      box-shadow:0 0 0 2px rgba(76,92,104,0.25);
      background:var(--brand-surface);
    }
    .form-textarea { min-height:90px; resize:vertical; }
    .form-hint {
      font-size:0.8rem;
      color:var(--brand-muted);
      margin-top:4px;
    }
    .form-error {
      font-size:0.8rem;
      color:#b91c1c;
      margin-top:4px;
      display:none;
    }
    .form-error.is-visible { display:block; }
    .modal-footer {
      margin-top:16px;
      display:flex;
      justify-content:flex-end;
      gap:8px;
    }

    /* ANIMATIONS */
    .reveal {
      opacity:0;
      transform:translateY(16px);
      transition:opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .reveal.is-visible {
      opacity:1;
      transform:translateY(0);
    }
    @keyframes modalIn {
      from { opacity:0; transform:translateY(16px) scale(0.98); }
      to   { opacity:1; transform:translateY(0) scale(1); }
    }

    /* RESPONSIVE */
    @media (max-width:767px){
      .nav-links-desktop { display:none; }
      .nav-mobile-toggle { display:inline-flex; }
      .about-hero-title { font-size:1.6rem; }
    }
    @media (min-width:768px){
      .back-to-top { bottom:88px; }
      /* Enforce hiding mobile menu on desktop */
      .nav-links-mobile.is-visible { display: none; }
    }

/* ABOUT VISUAL POLISH V1 */
:root {
  --brand-surface: #C8D0D1;
  --brand-accent: #40525E;
  --brand-muted: #3B4850;
  --brand-highlight: rgba(30, 30, 30, 0.11);
  --radius-lg: 0.875rem;
  --radius-xl: 1.125rem;
  --shadow-soft: 0 18px 48px rgba(30, 30, 30, 0.10);
  --header-height: 68px;
}

body {
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--brand-primary);
  color: #fff;
}

.container {
  max-width: 1240px;
  padding-inline: clamp(20px, 4vw, 40px);
}

.site-header {
  background: rgba(189, 198, 199, 0.90);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom-color: rgba(30, 30, 30, 0.10);
}

.nav-inner {
  gap: 24px;
}

.nav-brand {
  padding: 4px 0;
  font-size: 1.04rem;
  letter-spacing: 0.015em;
}

.nav-links-desktop {
  gap: clamp(16px, 2vw, 28px);
  font-size: 0.84rem;
}

.nav-link {
  padding-block: 8px;
  letter-spacing: 0.01em;
}

.lang-select {
  min-height: 38px;
  padding: 6px 12px;
  background: rgba(200, 208, 209, 0.82);
  border-color: rgba(30, 30, 30, 0.12);
}

.nav-mobile-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border-color: rgba(30, 30, 30, 0.12);
}

.nav-links-mobile-inner {
  padding: 18px 0 28px;
}

.nav-link-mobile {
  padding: 13px 0;
  font-size: 1rem;
}

.about-hero {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 120px);
  gap: clamp(36px, 6vw, 72px);
}

.about-hero-title {
  max-width: 780px;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about-hero-text {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.78;
  color: var(--brand-muted);
}

.story-label {
  margin-bottom: 14px;
  color: var(--brand-accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.icon-bubble {
  background: rgba(64, 82, 94, 0.09);
}

.about-meta-row {
  gap: 8px;
  margin-top: 28px;
}

.about-meta-pill {
  min-height: 38px;
  padding: 8px 13px;
  background: rgba(200, 208, 209, 0.65);
  border-color: rgba(30, 30, 30, 0.10);
  font-size: 0.77rem;
}

.about-hero-visual {
  padding: 10px;
  border-radius: 1.35rem;
  border-color: rgba(30, 30, 30, 0.10);
  background: rgba(200, 208, 209, 0.60);
  box-shadow: 0 24px 65px rgba(30, 30, 30, 0.12);
}

.about-hero-visual img {
  border-radius: 0.95rem;
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.about-hero-tag {
  left: 22px;
  top: 22px;
  padding: 7px 11px;
  background: rgba(189, 198, 199, 0.88);
  color: var(--brand-primary);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.about-hero-note {
  right: 22px;
  bottom: 22px;
  max-width: 260px;
  padding: 13px 15px;
  border: 1px solid rgba(30, 30, 30, 0.09);
  background: rgba(189, 198, 199, 0.90);
  font-size: 0.8rem;
  line-height: 1.6;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(30, 30, 30, 0.10);
}

.section {
  padding: clamp(66px, 8vw, 108px) 0;
  border-bottom-color: rgba(30, 30, 30, 0.10);
}

.section-title {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-subtitle,
.values-intro {
  max-width: 720px;
  color: var(--brand-muted);
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
  line-height: 1.72;
}

.story-layout {
  gap: clamp(20px, 3vw, 32px);
}

.story-block {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(200, 208, 209, 0.66);
  border-color: rgba(30, 30, 30, 0.10);
}

.story-timeline {
  margin-top: 12px;
}

.story-item {
  margin-bottom: 28px;
}

.story-item-title {
  font-size: 1.04rem;
}

.story-item-meta {
  color: var(--brand-muted);
}

.story-item-text {
  margin-top: 8px;
  font-size: 0.91rem;
  line-height: 1.7;
}

.values-grid {
  gap: 16px;
}

.value-card {
  padding: 24px;
  gap: 14px;
  border-radius: 1rem;
  border-color: rgba(30, 30, 30, 0.10);
  background: rgba(200, 208, 209, 0.58);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-3px);
  background: rgba(210, 218, 220, 0.78);
  border-color: rgba(30, 30, 30, 0.17);
  box-shadow: 0 16px 38px rgba(30, 30, 30, 0.07);
}

.value-card-header {
  gap: 13px;
  font-size: 1.02rem;
}

.value-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.28);
}

.value-text {
  color: rgba(30, 30, 30, 0.84);
  line-height: 1.68;
}

.stats-row {
  gap: 14px;
  margin-top: 20px;
}

.stat-pill {
  padding: 16px 18px;
  background: rgba(200, 208, 209, 0.62);
  border-color: rgba(30, 30, 30, 0.10);
}

.stat-big {
  font-size: 1.25rem;
}

.stat-label {
  color: var(--brand-muted);
}

.service-layout {
  gap: 18px;
}

.service-card {
  padding: 28px;
  gap: 14px;
  border-color: rgba(30, 30, 30, 0.10);
  background: rgba(200, 208, 209, 0.62);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 30, 30, 0.17);
  box-shadow: 0 16px 38px rgba(30, 30, 30, 0.07);
}

.service-tag {
  color: var(--brand-accent);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
}

.service-title {
  font-size: 1.15rem;
  letter-spacing: -0.012em;
}

.service-list {
  margin-top: 2px;
  font-size: 0.91rem;
  line-height: 1.65;
}

.cta-band {
  margin-top: 32px;
  padding: clamp(28px, 4vw, 42px);
  gap: 22px;
  border-color: rgba(30, 30, 30, 0.10);
  background: linear-gradient(135deg, rgba(200,208,209,0.72), rgba(221,228,230,0.82));
}

.cta-title {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.cta-sub {
  color: var(--brand-muted);
  line-height: 1.65;
}

.btn {
  min-height: 48px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.88rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.whatsapp-help-btn {
  color: #0F2A1C;
  padding: 11px 18px;
  box-shadow: 0 12px 30px rgba(18, 80, 45, 0.22);
}

.site-footer {
  padding: 30px 0;
  border-top-color: rgba(30, 30, 30, 0.10);
  background: rgba(200, 208, 209, 0.76);
}

:where(a, button, select, input, textarea):focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
}

@media (min-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  :root { --header-height: 62px; }

  .container {
    padding-inline: 20px;
  }

  .about-hero {
    padding-top: 58px;
    padding-bottom: 64px;
    gap: 32px;
  }

  .about-hero-title {
    font-size: clamp(2.2rem, 10.5vw, 3.3rem);
    line-height: 1.04;
  }

  .about-hero-text {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .about-meta-row {
    margin-top: 22px;
  }

  .about-meta-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .about-hero-tag {
    left: 16px;
    top: 16px;
  }

  .about-hero-note {
    position: static;
    max-width: none;
    margin-top: 10px;
    border-radius: 10px;
  }

  .section {
    padding: 58px 0;
  }

  .story-block,
  .value-card,
  .service-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

