:root{
    --primary:#0B5D4B;
    --primary-dark:#08483a;
    --navy:#163A5F;
    --bg:#FAFAF8;
    --text:#262626;
    --muted:#6B6B63;
    --card:#FFFFFF;
    --line:#E6E4DC;
    --gold:#AD8A54;
    --radius-lg:20px;
    --radius-md:14px;
    --radius-sm:10px;
    --shadow-sm: 0 1px 2px rgba(22,58,95,0.05), 0 1px 1px rgba(22,58,95,0.03);
    --shadow-md: 0 8px 24px rgba(22,58,95,0.07), 0 2px 6px rgba(22,58,95,0.04);
    --shadow-lg: 0 24px 60px rgba(22,58,95,0.10), 0 4px 12px rgba(22,58,95,0.05);
    --ease: cubic-bezier(.16,.8,.24,1);
  }

  *{margin:0;padding:0;box-sizing:border-box;}

  /* ============ ACCESSIBILITY: SKIP LINK & FOCUS STATES ============ */
  .skip-link{
    position:absolute;
    top:-48px;
    left:16px;
    z-index:1000;
    background:var(--navy);
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    font-family:'Manrope', sans-serif;
    font-weight:600;
    font-size:14px;
    transition:top .25s var(--ease);
  }
  .skip-link:focus{top:16px;}

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  [tabindex]:focus-visible{
    outline:2px solid var(--gold);
    outline-offset:3px;
    border-radius:4px;
  }
  .btn:focus-visible{outline-offset:4px;}
  .testi-dots button:focus-visible{outline-offset:5px;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
  }

  body{
    font-family:'Inter', -apple-system, sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  h1,h2,h3,h4{
    font-family:'Manrope', sans-serif;
    color:var(--navy);
    letter-spacing:-0.02em;
    font-weight:700;
  }

  img{max-width:100%;display:block;}
  a{text-decoration:none;color:inherit;}
  ul,ol{list-style:none;}
  button{font-family:inherit;cursor:pointer;border:none;background:none;}

  .wrap{
    max-width:1240px;
    margin:0 auto;
    padding:0 40px;
  }

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'Manrope', sans-serif;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:var(--primary);
    margin-bottom:18px;
  }
  .eyebrow::before{
    content:"";
    width:26px;
    height:1px;
    background:var(--gold);
  }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:15px 30px;
    border-radius:100px;
    font-family:'Manrope', sans-serif;
    font-weight:600;
    font-size:15px;
    letter-spacing:-0.01em;
    transition:all .35s var(--ease);
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--primary);
    color:#fff;
    box-shadow:0 1px 2px rgba(11,93,75,.15);
  }
  .btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
    box-shadow:var(--shadow-md);
  }
  .btn-ghost{
    background:transparent;
    color:var(--navy);
    border:1.5px solid var(--line);
  }
  .btn-ghost:hover{
    border-color:var(--navy);
    background:#fff;
  }
  .btn-sm{padding:12px 22px;font-size:14px;}

  /* ============ HEADER ============ */
  header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(250,250,248,0.92);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border-bottom:1px solid transparent;
    transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
  }
  header.scrolled{
    border-bottom-color:var(--line);
    box-shadow:0 1px 0 rgba(22,58,95,0.02);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:84px;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:'Manrope', sans-serif;
    font-weight:800;
    font-size:21px;
    color:var(--navy);
    letter-spacing:-0.01em;
  }
  .logo .mark{
    display:flex;
    align-items:center;
    flex-shrink:0;
  }
  .logo .mark img{
    height:34px;
    width:auto;
    display:block;
  }
  .logo .sub{
    display:block;
    font-family:'Inter',sans-serif;
    font-weight:500;
    font-size:10px;
    letter-spacing:0.1em;
    color:var(--muted);
    text-transform:uppercase;
    margin-top:1px;
  }
  .nav-menu{
    display:flex;
    gap:38px;
    align-items:center;
  }
  .nav-menu a{
    font-size:14.5px;
    font-weight:500;
    color:var(--text);
    position:relative;
    padding:6px 0;
    transition:color .25s;
  }
  .nav-menu a::after{
    content:"";
    position:absolute;
    left:0;bottom:0;
    width:0;height:1.5px;
    background:var(--primary);
    transition:width .3s var(--ease);
  }
  .nav-menu a:hover{color:var(--primary);}
  .nav-menu a:hover::after{width:100%;}
  .nav-menu a[aria-current="page"]{color:var(--primary);}
  .nav-menu a[aria-current="page"]::after{width:100%;}
  .nav-right{display:flex;align-items:center;gap:20px;}
  .burger{display:none;flex-direction:column;gap:5px;width:26px;}
  .burger span{height:2px;background:var(--navy);border-radius:2px;transition:all .3s;}

  /* ============ HERO ============ */
  .hero{
    padding:76px 0 110px;
    position:relative;
  }
  .hero .wrap{
    display:grid;
    grid-template-columns:1.02fr 0.98fr;
    gap:64px;
    align-items:center;
  }
  .hero h1{
    font-size:clamp(40px,4.6vw,66px);
    line-height:1.06;
    margin-bottom:26px;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--primary);
  }
  .hero p.sub{
    font-size:18px;
    color:var(--muted);
    max-width:490px;
    margin-bottom:40px;
    line-height:1.7;
  }
  .hero-actions{
    display:flex;
    gap:16px;
    margin-bottom:56px;
    flex-wrap:wrap;
  }
  .trust-row{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
  }
  .trust-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13.5px;
    font-weight:600;
    color:var(--navy);
    font-family:'Manrope',sans-serif;
  }
  .trust-item .dot{
    width:7px;height:7px;
    border-radius:50%;
    background:var(--gold);
    flex-shrink:0;
  }
  .hero-visual{
    position:relative;
  }
  .hero-visual .frame{
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow-lg);
    aspect-ratio:4/4.6;
    background:var(--navy);
  }
  .hero-visual img{
    width:100%;height:100%;object-fit:cover;
  }
  .float-card{
    position:absolute;
    background:#fff;
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-lg);
    padding:20px 22px;
    display:flex;
    align-items:center;
    gap:14px;
  }
  .float-card.fc1{
    bottom:34px; left:-38px;
  }
  .float-card.fc2{
    top:32px; right:-30px;
    flex-direction:column;
    align-items:flex-start;
    gap:2px;
    padding:16px 20px;
  }
  .float-card .icon{
    width:42px;height:42px;
    border-radius:11px;
    background:rgba(11,93,75,0.08);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .float-card .num{
    font-family:'Manrope',sans-serif;
    font-weight:800;
    font-size:22px;
    color:var(--navy);
  }
  .float-card .lbl{
    font-size:12px;
    color:var(--muted);
    font-weight:500;
  }

  /* ============ SECTION SHARED ============ */
  section{padding:110px 0;}
  .section-head{
    max-width:640px;
    margin:0 auto 64px;
    text-align:center;
  }
  .section-head h2{
    font-size:clamp(30px,3.4vw,44px);
    line-height:1.15;
  }
  .section-head p{
    color:var(--muted);
    font-size:16.5px;
    margin-top:16px;
    line-height:1.7;
  }
  .section-head.left{margin:0 0 56px;text-align:left;}

  .bg-alt{background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line);}

  /* ============ GOALS ============ */
  .goals-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
  }
  .goal-card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:var(--radius-md);
    padding:32px 26px;
    transition:all .35s var(--ease);
    cursor:pointer;
  }
  .goal-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-md);
    border-color:transparent;
  }
  .goal-card .icon{
    width:46px;height:46px;
    border-radius:12px;
    background:rgba(11,93,75,0.07);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:22px;
    color:var(--primary);
  }
  .goal-card h4{
    font-size:16.5px;
    margin-bottom:8px;
  }
  .goal-card p{
    font-size:13.5px;
    color:var(--muted);
  }

  /* ============ SOLUTIONS ============ */
  .solutions-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    overflow:hidden;
  }
  .solution-card{
    background:#fff;
    padding:44px 38px;
    transition:background .3s;
    display:flex;
    flex-direction:column;
  }
  .solution-card:hover{background:#FBFBF9;}
  .solution-card .solution-thumb{
    aspect-ratio:3/2;
    border-radius:var(--radius-md);
    overflow:hidden;
    margin-bottom:24px;
  }
  .solution-card .solution-thumb img{
    width:100%;height:100%;object-fit:cover;display:block;
  }
  .solution-card .idx{
    font-family:'Manrope',sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.1em;
    color:var(--gold);
    margin-bottom:22px;
    display:block;
  }
  .solution-card h4{
    font-size:20px;
    margin-bottom:12px;
  }
  .solution-card p{
    font-size:14.5px;
    color:var(--muted);
    margin-bottom:20px;
  }
  .solution-card .link{
    font-size:13.5px;
    font-weight:600;
    color:var(--navy);
    font-family:'Manrope',sans-serif;
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:auto;
  }
  .solution-card:hover .link{color:var(--primary);}

  /* ============ WHY EVA ============ */
  .why-wrap{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:80px;
    align-items:center;
  }
  .why-wrap > .reveal{min-width:0;}
  .why-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    overflow:hidden;
  }
  .why-stat{
    background:var(--navy);
    color:#fff;
    padding:42px 32px;
  }
  .why-stat:nth-child(1){background:var(--navy);}
  .why-stat:nth-child(2){background:var(--primary);}
  .why-stat:nth-child(3){background:var(--primary);}
  .why-stat:nth-child(4){background:var(--navy);}
  .why-stat .n{
    font-family:'Manrope',sans-serif;
    font-size:38px;
    font-weight:800;
    margin-bottom:6px;
  }
  .why-stat .l{
    font-size:13px;
    opacity:0.82;
    font-weight:500;
  }
  .why-list{display:flex;flex-direction:column;gap:30px;}
  .why-item{display:flex;gap:20px;}
  .why-item .num{
    font-family:'Manrope',sans-serif;
    font-weight:800;
    font-size:14px;
    color:var(--gold);
    padding-top:3px;
  }
  .why-item h4{font-size:18px;margin-bottom:8px;}
  .why-item p{font-size:14.5px;color:var(--muted);}

  /* ============ JOURNEY (signature) ============ */
  .journey{position:relative;}
  .journey-line-wrap{position:relative;padding-top:20px;}
  .journey-track{
    position:absolute;
    top:29px; left:0; right:0;
    height:1px;
    background:var(--line);
  }
  .journey-track::after{
    content:"";
    position:absolute;
    left:0; top:0;
    height:1px;
    width:100%;
    background:linear-gradient(to right, var(--gold), var(--primary));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 1.4s var(--ease);
  }
  .journey-track.in-view::after{transform:scaleX(1);}
  .journey-steps{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    position:relative;
  }
  .journey-step{text-align:left;}
  .journey-step .node{
    width:16px;height:16px;
    border-radius:50%;
    background:#fff;
    border:2px solid var(--navy);
    margin-bottom:26px;
    position:relative;
    z-index:2;
    transition:background .3s, border-color .3s;
  }
  .journey-step:nth-child(1) .node{border-color:var(--gold);background:var(--gold);}
  .journey-step .stage{
    font-family:'Manrope',sans-serif;
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:10px;
  }
  .journey-step h4{font-size:16.5px;margin-bottom:10px;line-height:1.3;}
  .journey-step p{font-size:13.5px;color:var(--muted);}

  /* ============ CALCULATOR ============ */
  .calc-panel{
    background:var(--navy);
    border-radius:var(--radius-lg);
    padding:56px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    color:#fff;
    box-shadow:var(--shadow-lg);
  }
  .calc-tabs{
    display:inline-flex;
    background:rgba(255,255,255,0.08);
    border-radius:100px;
    padding:5px;
    margin-bottom:38px;
    gap:4px;
  }
  .calc-tab{
    padding:10px 20px;
    border-radius:100px;
    font-size:13.5px;
    font-weight:600;
    font-family:'Manrope',sans-serif;
    color:rgba(255,255,255,0.65);
    transition:all .3s;
  }
  .calc-tab.active{background:#fff;color:var(--navy);}
  .calc-left h3{color:#fff;font-size:26px;margin-bottom:14px;}
  .calc-left p{color:rgba(255,255,255,0.62);font-size:14.5px;margin-bottom:38px;max-width:380px;}
  .field{margin-bottom:30px;}
  .field-top{
    display:flex;justify-content:space-between;align-items:baseline;
    margin-bottom:14px;
  }
  .field-top label{font-size:13.5px;font-weight:600;color:rgba(255,255,255,0.8);}
  .field-top .val{font-family:'Manrope',sans-serif;font-weight:800;font-size:16px;color:#fff;}
  input[type="range"]{
    -webkit-appearance:none;
    width:100%;
    height:3px;
    background:rgba(255,255,255,0.22);
    border-radius:3px;
    outline:none;
  }
  input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:18px;height:18px;
    border-radius:50%;
    background:var(--gold);
    cursor:pointer;
    border:3px solid #fff;
    box-shadow:0 2px 6px rgba(0,0,0,0.3);
  }
  input[type="range"]::-moz-range-thumb{
    width:18px;height:18px;
    border-radius:50%;
    background:var(--gold);
    cursor:pointer;
    border:3px solid #fff;
  }
  .calc-right{
    background:rgba(255,255,255,0.06);
    border-radius:var(--radius-md);
    padding:38px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .calc-result-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,0.12);
  }
  .calc-result-row:last-of-type{border-bottom:none;}
  .calc-result-row .k{font-size:13.5px;color:rgba(255,255,255,0.6);}
  .calc-result-row .v{font-family:'Manrope',sans-serif;font-weight:700;font-size:16px;}
  .calc-result-row.total{
    margin-top:14px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,0.18);
    border-bottom:none;
  }
  .calc-result-row.total .k{color:#fff;font-weight:600;font-size:14.5px;}
  .calc-result-row.total .v{font-size:30px;color:var(--gold);}

  /* ============ TESTIMONIALS ============ */
  .testi-wrap{position:relative;max-width:780px;margin:0 auto;text-align:center;}
  .testi-slide{display:none;}
  .testi-slide.active{display:block;animation:fadeUp .5s var(--ease);}
  @keyframes fadeUp{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}
  .testi-quote{
    font-family:'Manrope',sans-serif;
    font-size:clamp(20px,2.4vw,27px);
    font-weight:600;
    color:var(--navy);
    line-height:1.5;
    margin-bottom:34px;
  }
  .testi-person{display:flex;flex-direction:column;align-items:center;gap:4px;}
  .testi-avatar{
    width:52px;height:52px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-family:'Manrope',sans-serif;
    font-weight:700;
    margin-bottom:14px;
    font-size:16px;
  }
  .testi-name{font-weight:700;font-size:14.5px;color:var(--navy);}
  .testi-role{font-size:13px;color:var(--muted);}
  .testi-dots{display:flex;justify-content:center;gap:10px;margin-top:44px;}
  .testi-dots button{
    width:8px;height:8px;border-radius:50%;
    background:var(--line);
    transition:all .3s;
  }
  .testi-dots button.active{background:var(--primary);width:22px;border-radius:5px;}

  /* ============ ARTICLES ============ */
  .articles-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }
  .article-card{cursor:pointer;}
  .article-thumb{
    aspect-ratio:16/11;
    border-radius:var(--radius-md);
    margin-bottom:22px;
    overflow:hidden;
    position:relative;
  }
  .article-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease);}
  .article-card:hover .article-thumb img{transform:scale(1.05);}
  .article-tag{
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--primary);
    margin-bottom:12px;
    display:block;
  }
  .article-card h4{font-size:18px;line-height:1.35;margin-bottom:10px;}
  .article-meta{font-size:12.5px;color:var(--muted);}

  /* ============ CTA ============ */
  .cta-section{
    background:var(--primary);
    border-radius:var(--radius-lg);
    padding:80px 60px;
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .cta-section h2{
    color:#fff;
    font-size:clamp(28px,3.6vw,42px);
    max-width:640px;
    margin:0 auto 18px;
  }
  .cta-section p{
    color:rgba(255,255,255,0.78);
    font-size:16px;
    margin-bottom:36px;
  }
  .cta-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
  .cta-section .btn-ghost{
    color:#fff;
    border-color:rgba(255,255,255,0.35);
  }
  .cta-section .btn-ghost:hover{background:rgba(255,255,255,0.1);border-color:#fff;}
  .cta-section .btn-primary{background:#fff;color:var(--primary);}
  .cta-section .btn-primary:hover{background:#f2f2ee;transform:translateY(-2px);}

  /* ============ FOOTER ============ */
  footer{background:var(--navy);color:rgba(255,255,255,0.7);padding:90px 0 0;}
  .footer-top{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:70px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .logo{color:#fff;}
  .footer-brand p{font-size:14px;margin:20px 0 24px;max-width:280px;line-height:1.7;color:rgba(255,255,255,0.55);}
  .footer-col h5{
    font-family:'Manrope',sans-serif;
    color:#fff;
    font-size:13.5px;
    font-weight:700;
    letter-spacing:0.04em;
    margin-bottom:22px;
  }
  .footer-col ul{display:flex;flex-direction:column;gap:14px;}
  .footer-col a{font-size:14px;transition:color .25s;}
  .footer-col a:hover{color:#fff;}
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 0;
    font-size:13px;
    color:rgba(255,255,255,0.45);
    flex-wrap:wrap;
    gap:12px;
  }
  .footer-bottom .compliance{max-width:640px;line-height:1.6;}
  .social-row{display:flex;gap:14px;}
  .social-row a{
    width:34px;height:34px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.18);
    display:flex;align-items:center;justify-content:center;
    transition:all .25s;
  }
  .social-row a:hover{background:rgba(255,255,255,0.1);border-color:rgba(255,255,255,0.4);}

  /* ============ REVEAL ============ */
  .reveal{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease), transform .7s var(--ease);}
  .reveal.in-view{opacity:1;transform:translateY(0);}

  /* ============ RESPONSIVE ============ */
  @media (max-width:1080px){
    .wrap{padding:0 28px;}
    .hero .wrap{grid-template-columns:1fr;gap:56px;}
    .hero-visual{max-width:440px;margin:0 auto;order:-1;}
    .goals-grid{grid-template-columns:repeat(2,1fr);}
    .solutions-grid{grid-template-columns:repeat(2,1fr);}
    .why-wrap{grid-template-columns:1fr;gap:50px;}
    .journey-steps{grid-template-columns:repeat(3,1fr);row-gap:40px;}
    .journey-track{display:none;}
    .calc-panel{grid-template-columns:1fr;padding:40px;gap:40px;}
    .articles-grid{grid-template-columns:repeat(2,1fr);}
    .footer-top{grid-template-columns:1fr 1fr;gap:44px 30px;}
    .nav-menu{
      position:fixed;
      top:84px;left:0;right:0;
      background:#fff;
      flex-direction:column;
      align-items:flex-start;
      padding:28px 22px 34px;
      gap:22px;
      border-bottom:1px solid var(--line);
      transform:translateY(-120%);
      opacity:0;
      transition:all .35s var(--ease);
      pointer-events:none;
      z-index:99;
    }
    .nav-menu.open{transform:translateY(0);opacity:1;pointer-events:auto;}
    .burger{display:flex;}
  }
  @media (max-width:720px){
    .wrap{padding:0 22px;}
    section{padding:76px 0;}
    .nav-right .btn-primary{padding:11px 18px;font-size:13.5px;}
    .goals-grid{grid-template-columns:1fr 1fr;gap:14px;}
    .solutions-grid{grid-template-columns:1fr;}
    .journey-steps{grid-template-columns:1fr 1fr;}
    .articles-grid{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr;}
    .calc-panel{padding:24px;}
    .calc-right{padding:24px;}
    .calc-result-row.total .v{font-size:24px;}
    .float-card{position:static;margin-top:14px;box-shadow:var(--shadow-sm);}
    .float-card.fc2{margin-top:0;margin-bottom:14px;}
    .cta-section{padding:56px 28px;}
    .footer-bottom{flex-direction:column;align-items:flex-start;}
  }

/* Solution-card image layout repair */
.solution-thumb {
  margin: -44px -38px 28px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.solution-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
