:root{
    --bg: #fbf6ee;
    --bg2:#f3ede4;
    --text:#1a1a1a;
    --muted:#5a5a5a;
  
    --brand:#b0713e;        /* warm copper */
    --brand2:#7a4a29;       /* deeper brown */
    --card:#ffffffcc;
    --stroke:#e5d6c6;
  
    --radius: 18px;
    --shadow: 0 12px 35px rgba(0,0,0,.08);
  }
  
  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color:var(--text);
    background: linear-gradient(180deg, var(--bg), #fff);
  }
  
  a{color:inherit; text-decoration:none}
  img{max-width:100%; display:block}
  
  .container{
    width:min(1100px, 92%);
    margin-inline:auto;
  }
  
  /* Topbar */
  .topbar{
    position:sticky;
    top:0;
    z-index:50;
    background: rgba(251,246,238,.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229,214,198,.7);
  }
  .topbar__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
    gap:12px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:750;
    letter-spacing:.2px;
  }
  .brand__logo{
    width:32px; height:32px;
    display:block;
  }
  .brand__name{font-size:18px}
  
  .nav{
    display:flex;
    align-items:center;
    gap:18px;
    color: var(--muted);
    font-weight:600;
  }
  .nav a{padding:8px 10px; border-radius:12px}
  .nav a:hover{background: rgba(176,113,62,.08); color: var(--brand2)}
  
  /* Buttons */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 16px;
    border-radius: 14px;
    border: 1px solid var(--brand);
    background: var(--brand);
    color: #fff;
    font-weight:700;
    box-shadow: 0 10px 22px rgba(176,113,62,.18);
    cursor:pointer;
  }
  .btn:hover{filter: brightness(.98)}
  .btn--ghost{
    background: transparent;
    color: var(--brand2);
    border-color: rgba(122,74,41,.35);
    box-shadow:none;
  }
  .btn--ghost:hover{background: rgba(176,113,62,.08)}
  .btn--small{padding:10px 12px; font-size:14px}
  
  /* Hero */
  .hero{
    padding:54px 0 24px;
  }
  .hero__grid{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap:28px;
    align-items:start;
  }
  
  .pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    border: 1px solid rgba(176,113,62,.25);
    background: rgba(176,113,62,.08);
    color: var(--brand2);
    font-weight:700;
    margin:0 0 12px;
  }
  
  h1{
    font-size: clamp(34px, 3.8vw, 52px);
    line-height:1.05;
    margin: 0 0 12px;
    letter-spacing:-.6px;
  }
  .sub{
    margin:0 0 18px;
    color: var(--muted);
    font-size: 16.5px;
    line-height:1.6;
  }
  
  .cta-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin: 16px 0 18px;
  }
  
  .trust{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:12px;
    margin-top: 14px;
  }
  .trust__item{
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(229,214,198,.9);
    border-radius: var(--radius);
    padding: 12px 12px;
  }
  .trust__num{
    font-size:18px;
    font-weight:800;
    color: var(--brand2);
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(176,113,62,.12);
    border-radius: 8px;
    border: 1px solid rgba(176,113,62,.25);
  }
  .trust__text{font-size:14px; color: var(--muted)}
  .trust__text strong{color:var(--text)}
  
  .phone-card{
    position:relative;
    background: radial-gradient(1000px 400px at 30% 10%, rgba(176,113,62,.20), transparent 55%),
                linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.65));
    border: 1px solid rgba(229,214,198,.9);
    border-radius: 26px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .phone-card__tag{
    position:absolute;
    top:12px; left:12px;
    padding:7px 10px;
    border-radius: 999px;
    background: rgba(26,26,26,.06);
    border: 1px solid rgba(26,26,26,.07);
    font-weight:700;
    font-size: 13px;
    color: var(--brand2);
  }
  .caption{
    margin: 10px 4px 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.5;
  }
  
  /* Sections */
  .section{
    padding: 56px 0;
  }
  .section--alt{
    background: linear-gradient(180deg, rgba(243,237,228,.9), rgba(255,255,255,.6));
    border-top: 1px solid rgba(229,214,198,.75);
    border-bottom: 1px solid rgba(229,214,198,.75);
  }
  .section__head{
    margin-bottom: 18px;
  }
  .section__head h2{
    font-size: clamp(22px, 2.2vw, 32px);
    margin:0 0 6px;
    letter-spacing:-.3px;
  }
  .section__sub{
    margin:0;
    color: var(--muted);
    line-height:1.6;
  }
  
  /* Cards grid */
  .grid3{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:14px;
    margin-top: 18px;
  }
  .card{
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(229,214,198,.95);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,.05);
  }
  .card h3{
    margin: 0 0 8px;
    font-size: 16px;
  }
  .card p{
    margin:0;
    color: var(--muted);
    line-height:1.6;
    font-size: 14.5px;
  }
  
  /* Screens (stacked, no carousel) */
  .shots{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:16px;
    margin-top: 18px;
  }
  .shot{
    margin:0;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(229,214,198,.95);
    border-radius: 20px;
    overflow:hidden;
    box-shadow: var(--shadow);
  }
  .shot img{
    width:100%;
    height:auto;
  }
  .shot figcaption{
    padding: 12px 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Steps */
  .steps{
    list-style:none;
    padding:0;
    margin: 18px 0 0;
    display:grid;
    gap:12px;
  }
  .step{
    display:flex;
    gap:12px;
    align-items:flex-start;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(229,214,198,.95);
    border-radius: var(--radius);
    padding: 14px;
  }
  .step__badge{
    width:34px; height:34px;
    border-radius: 12px;
    background: rgba(176,113,62,.12);
    border: 1px solid rgba(176,113,62,.28);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    color: var(--brand2);
  }
  .step__body h3{
    margin: 0 0 4px;
    font-size: 16px;
  }
  .step__body p{
    margin:0;
    color: var(--muted);
    line-height:1.6;
  }
  
  /* Contact */
  .contact{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:16px;
    align-items:start;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(229,214,198,.95);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .form{
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  input{
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(229,214,198,.95);
    background: #fff;
    font-size: 15px;
    outline:none;
  }
  input:focus{
    border-color: rgba(176,113,62,.55);
    box-shadow: 0 0 0 5px rgba(176,113,62,.12);
  }
  .form__hint{
    margin:0;
    font-size: 13px;
    color: var(--muted);
  }
  
  /* Footer */
  .footer{
    padding: 20px 0 34px;
  }
  .footer__inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    color: var(--muted);
    font-size: 14px;
  }
  .footer__links a{
    color: var(--brand2);
    font-weight:700;
  }
  
  .sr-only{
    position:absolute;
    width:1px;height:1px;
    padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);
    white-space:nowrap;border:0;
  }

  /* Legal Pages */
  .legal-page{
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(229,214,198,.95);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
  }
  .legal-page h1{
    font-size: clamp(28px, 3vw, 36px);
    margin: 0 0 8px;
    color: var(--brand2);
  }
  .legal-page__date{
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 32px;
  }
  .legal-section{
    margin-bottom: 32px;
  }
  .legal-section h2{
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--brand2);
    padding-top: 8px;
  }
  .legal-section h3{
    font-size: 18px;
    margin: 16px 0 8px;
    color: var(--text);
  }
  .legal-section p{
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
  }
  .legal-section ul{
    margin: 12px 0;
    padding-left: 24px;
    color: var(--muted);
    line-height: 1.8;
  }
  .legal-section li{
    margin-bottom: 8px;
  }
  .legal-section a{
    color: var(--brand2);
    text-decoration: underline;
  }
  .legal-section a:hover{
    color: var(--brand);
  }
  .legal-page__footer{
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(229,214,198,.95);
  }
  
  /* Workflow */
  .workflow{
    display:grid;
    gap:32px;
    margin-top: 24px;
  }
  .workflow__step{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:24px;
    align-items:center;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(229,214,198,.95);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
  }
  .workflow__step--reverse{
    direction: rtl;
  }
  .workflow__step--reverse > *{
    direction: ltr;
  }
  .workflow__image{
    border-radius: 16px;
    overflow:hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
  }
  .workflow__image img{
    width:100%;
    height:auto;
    display:block;
  }
  .workflow__content h3{
    margin: 0 0 12px;
    font-size: 20px;
    color: var(--brand2);
  }
  .workflow__content p{
    margin: 0 0 12px;
    color: var(--muted);
    line-height:1.7;
    font-size: 15px;
  }
  .workflow__content ul{
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height:1.8;
    font-size: 14.5px;
  }
  .workflow__content li{
    margin-bottom: 6px;
  }

  /* Responsive */
  @media (max-width: 900px){
    .hero__grid{grid-template-columns: 1fr; }
    .trust{grid-template-columns: 1fr; }
    .grid3{grid-template-columns: 1fr; }
    .shots{grid-template-columns: 1fr; }
    .contact{grid-template-columns: 1fr; }
    .workflow__step{
      grid-template-columns: 1fr;
      direction: ltr;
    }
    .workflow__step--reverse{
      direction: ltr;
    }
    .legal-page{
      padding: 24px 18px;
    }
    .legal-section{
      margin-bottom: 24px;
    }
    .nav{display:none;} /* keep it simple on mobile */
  }
  