

:root{  
      --bg:#eef3f7;  
      --surface:#ffffff;  
      --card:#f7fbff;  
      --text:#132034;  
      --muted:#50637a;  
      --brand:#0066d6;  
      --brand2:#00a7c9;  
      --border:rgba(17,35,57,.12);  
      --shadow: 0 18px 42px rgba(9,32,60,.14);  
      --radius:18px;  
      --max:1480px;  
    }  
  
    *{box-sizing:border-box}  
    *, *::before, *::after{font-family:"Manrope", "Segoe UI", Arial, sans-serif}  
    html{scroll-behavior:smooth}  
    body{  
      margin:0;  
      font-family: "Manrope", "Segoe UI", Arial, sans-serif;  
      background:
        radial-gradient(900px 540px at -10% 0%, rgba(0,102,214,.10), transparent 62%),
        radial-gradient(780px 500px at 110% 10%, rgba(0,167,201,.10), transparent 60%),
        linear-gradient(180deg, #f7fbff 0%, #eef3f7 48%, #e7edf4 100%);
      color:var(--text);  
    }  
    a{color:inherit;text-decoration:none}  
    img{max-width:100%;height:auto;display:block}  
    .container{max-width:var(--max); margin:auto; padding:0 18px}  
  
    /* TOPBAR */
    .topbar{  
      position:sticky; top:0; z-index:1000;
      background: rgba(255,255,255,.86);  
      backdrop-filter: blur(10px);  
      border-bottom:1px solid var(--border);  
    }  
    .topbar-inner{  
      display:flex; align-items:center; justify-content:space-between;  
      padding:12px 0;  
      gap:16px;  
    }  
    .topbar-actions{
      display:flex; align-items:center; gap:10px;
    }  
    .brand{  
      display:flex; align-items:center; gap:12px;  
      min-width: 165px;  
    }  
    .logo{  
      height:50px; width:auto;     
    }  
    .brand-name{  
      display:flex; flex-direction:column; line-height:1.1;  
      font-weight:800;  
      letter-spacing:.2px;  
    }  
    .brand-name small{  
      font-weight:600;  
      color:var(--muted);  
      letter-spacing:.25px;  
      margin-top:3px;  
    }  
  
    .nav{  
      display:flex; align-items:center; gap:14px;  
    }  
    .nav a{  
      color:#2c4057;  
      font-weight:650;  
      font-size:14px;  
      padding:10px 10px;  
      border-radius:12px;  
      transition:.2s ease;  
      display:inline-flex;  
      align-items:center;  
      gap:6px;  
    }  
    .nav a img{  
      width:15px;  
      height:15px;  
      display:inline-block;  
      object-fit:contain;  
      filter: brightness(0) saturate(100%) invert(20%) sepia(18%) saturate(646%) hue-rotate(171deg) brightness(92%) contrast(89%);  
    }  
    .nav a:hover img{  
      filter: brightness(0) saturate(100%) invert(23%) sepia(84%) saturate(2318%) hue-rotate(197deg) brightness(88%) contrast(103%);  
    }  
    .nav a:hover{  
      color:#0f2c49;  
      background: rgba(0,102,214,.08);  
    }  
  
    .btn{  
      display:inline-flex; align-items:center; justify-content:center;  
      gap:10px;  
      padding:12px 14px;  
      border-radius:14px;  
      border:1px solid var(--border);  
      font-weight:750;  
      letter-spacing:.2px;  
      transition:.2s ease;  
      cursor:pointer;  
      user-select:none;  
      white-space:nowrap;  
    }  
    .btn-primary{  
      background: linear-gradient(135deg, var(--brand), var(--brand2));  
      color:#ffffff;  
      border:0;  
      box-shadow: 0 14px 34px rgba(0,102,214,.24);  
    }  
    .btn-primary:hover{ transform: translateY(-1px) }  
    .btn-ghost{  
      background: #ffffff;  
      color: var(--text);  
      border-color: rgba(17,35,57,.16);  
    }  
    .btn-ghost:hover{ background: #f7fbff; transform: translateY(-1px) }  
    .btn-hire-us{
      background: #ffffff;
      color: var(--text);
      border-color: rgba(17,35,57,.16);
      box-shadow: 0 14px 30px rgba(9,32,60,.08);
    }
    .btn-hire-us:hover{
      background: #f7fbff;
      transform: translateY(-1px);
    }
  
    .hamburger{  
      display:none;  
      width:44px; height:44px;  
      border-radius:14px;  
      border:1px solid var(--border);  
      background: rgba(255,255,255,.04);  
      color:var(--text);  
      font-size:18px;  
      align-items:center; justify-content:center;  
    }  
  
    /* HERO */  
    .hero{  
      padding:52px 0 26px;  
    }  
    #home.hero{
      margin-top:-84px;
      padding-top:136px;
    }
    .hero-grid{    
      align-items:stretch;  
    }  
    .hero-card{
      background: rgba(255,255,255,.34);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding:26px;
      min-height:460px;
      overflow:hidden;
      position:relative;
      border:1px solid rgba(255,255,255,.55);
    }
    /* Smaller header appointment button */
    header.topbar .btn{ padding:12px 8px; font-size:12px; gap:8px; border-radius:10px }

    /* rotating background inside hero card */
    .hero-card .hero-bg{
      position:absolute; inset:0; z-index:0; overflow:hidden; border-radius:inherit;
    }
    .hero-card .hero-bg img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center;
      transform:scale(1.02);
      display:block;
      opacity:0;
      transition:opacity .6s ease;
      z-index:0;
    }
    .hero-card .hero-bg img.active{
      opacity:1;
    }
    .hero-card .hero-bg::after{
      content:""; position:absolute; inset:0; background:linear-gradient(rgba(9,24,40,.44), rgba(9,24,40,.38)); z-index:1; pointer-events:none; border-radius:inherit;
    }
    /* ensure hero card content sits above the background */
    .hero-card > *{ position:relative; z-index:2 }
    .pill{  
      display:inline-flex;  
      padding:8px 12px;  
      border-radius:999px;  
      border:1px solid rgba(0,102,214,.22);  
      background: rgba(255,255,255,.78);  
      color: #15436f;  
      font-weight:700;  
      font-size:13px;  
      margin-bottom:14px;  
    }  
    h1{  
      margin:0 0 12px;  
      font-size:42px;  
      letter-spacing:-.6px;  
      line-height:1.1;  
    }  
    .lead{  
      margin:0 0 18px;  
      color:var(--muted);  
      font-size:15.5px;  
      line-height:1.65;  
    }
.hero-card h1,
    .hero-card .lead,
    .hero-card .pill{
      text-shadow: 0 5px 20px rgba(0,0,0,.35);
      color:#f6fbff;
    }
    .hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:8px }  
    .hero-actions-mt{ margin-top:16px; }
    .hero-bg-img{
      width:100%; height:100%; object-fit:cover; display:block;
    }  
/* SECTION */  
    section{ padding:46px 0 }  
    #services,
    #process,
    #contact{
      background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.12));
      border-top:1px solid rgba(255,255,255,.5);
      border-bottom:1px solid rgba(17,35,57,.08);
    }
    .section-head{  
      display:flex;  
      justify-content:space-between;  
      align-items:flex-end;  
      gap:16px;  
      margin-bottom:18px;  
    }  
    .section-title h2{  
      margin:0;  
      font-size:28px;  
      letter-spacing:-.3px;  
    }  
    .section-title p{  
      margin:8px 0 0;  
      color:var(--muted);  
      line-height:1.6;  
      max-width:720px;  
      font-size:14.8px;  
    }  
  
    /* SERVICES */  
    .grid{  
      display:grid;  
      grid-template-columns: repeat(3, 1fr);  
      gap:16px;  
    }  
    .card{  
      border:1px solid var(--border);  
      background: rgba(255,255,255,.92);  
      border-radius: 18px;  
      box-shadow: 0 12px 28px rgba(6,36,68,.12);  
      overflow:hidden;  
      transition:.2s ease;  
      display: grid;  
      grid-template-rows: 2fr 1fr;  
      height: 300px;  
    }  
    .card:hover{ transform: translateY(-2px); background: #ffffff }  
    .card .thumb{  
      background:  
        radial-gradient(600px 220px at 30% 30%, rgba(30,140,255,.28), transparent 62%),  
        radial-gradient(600px 220px at 80% 70%, rgba(0,212,255,.18), transparent 62%),  
        rgba(255,255,255,.03);  
      border-bottom:1px solid var(--border);  
      overflow: hidden;  
    }
    .card-thumb-img{
      width:100%; height:100%; object-fit:cover;
    }  
    .card .body{ 
      padding:12px;  
      display: flex;  
      flex-direction: column;  
      gap: 6px;  
      overflow: hidden;  
    }  
    .card .title-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap:10px;
    }
    .card h3{ margin:0; font-size:15px; letter-spacing:-.2px; display:flex; align-items:center; gap:6px }  
    .service-icon{ width:16px; height:16px; object-fit:contain; flex:0 0 16px; display:block; filter: brightness(0) saturate(100%) invert(24%) sepia(43%) saturate(1507%) hue-rotate(186deg) brightness(85%) contrast(96%); }
    .card p{ margin:0; color:var(--muted); font-size:13px; line-height:1.5 }  
    .card .more{  
      display:inline-flex; align-items:center; gap:6px;  
      color: #1c4a78;  
      font-weight:700;  
      font-size:12px;  
      padding:8px 10px;  
      border-radius: 10px;  
      background: rgba(0,102,214,.08);  
      border:1px solid rgba(0,102,214,.22);  
    }
    .card .more img {
      width: 14px;
      height: 14px;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(24%) sepia(43%) saturate(1507%) hue-rotate(186deg) brightness(85%) contrast(96%);
    }

/* MAIN PAGE ABOUT */
.about-check{
      position:relative;
      width:24px;
      height:24px;
      margin-top:1px;
      border-radius:50%;
      background:linear-gradient(135deg, #0c48c9, #20a8d8);
      box-shadow:0 8px 18px rgba(12,84,216,.22);
    }

    .about-check::after{
      content:"";
      position:absolute;
      left:8px;
      top:5px;
      width:6px;
      height:11px;
      border-right:2px solid #fff;
      border-bottom:2px solid #fff;
      transform:rotate(45deg);
    }
.about-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
    }

    /* Premium main-page About section */
    #about{
      padding:86px 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(241,247,253,.92) 100%);
      border-top:1px solid rgba(17,35,57,.06);
      border-bottom:1px solid rgba(17,35,57,.06);
    }

    .about-premium{
      display:grid;
      grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
      gap:48px;
      align-items:center;
    }

    .about-copy{
      max-width:650px;
    }

    .about-copy .pill{
      margin-bottom:18px;
      background:rgba(12,84,216,.08);
      border-color:rgba(12,84,216,.18);
      color:#164478;
    }

    .about-copy h2{
      margin:0;
      color:#071733;
      font-size:clamp(38px, 4.2vw, 62px);
      line-height:1.04;
      font-weight:900;
      letter-spacing:0;
    }

    .about-lead{
      max-width:620px;
      margin:20px 0 0;
      color:#405873;
      font-size:17px;
      line-height:1.78;
    }

    .about-proof-row{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:0;
      margin:30px 0 24px;
      border:1px solid rgba(17,35,57,.10);
      border-radius:16px;
      overflow:hidden;
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 42px rgba(15,35,70,.08);
    }

    .about-proof{
      min-height:102px;
      padding:18px 16px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      border-right:1px solid rgba(17,35,57,.08);
    }

    .about-proof:last-child{
      border-right:0;
    }

    .about-proof strong{
      display:block;
      color:#0b4fd0;
      font-size:30px;
      line-height:1;
      font-weight:900;
      letter-spacing:0;
    }

    .about-proof span{
      display:block;
      margin-top:8px;
      color:#536981;
      font-size:13px;
      font-weight:750;
      line-height:1.35;
    }

    .about-service-strip{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-bottom:26px;
    }

    .about-service-strip span{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(17,35,57,.10);
      color:#1f3d5f;
      font-size:13px;
      font-weight:800;
      box-shadow:0 8px 18px rgba(15,35,70,.06);
    }

    .about-promises{
      display:grid;
      gap:14px;
    }

    .about-promise{
      display:grid;
      grid-template-columns:28px 1fr;
      gap:14px;
      align-items:flex-start;
      padding:0 0 0 2px;
    }

    .about-promise .about-check{
      margin-top:3px;
      width:24px;
      height:24px;
      flex:0 0 24px;
    }

    .about-promise b{
      display:block;
      color:#10233d;
      font-size:16px;
      font-weight:900;
      margin-bottom:4px;
    }

    .about-promise p{
      margin:0;
      color:#52677f;
      font-size:14.5px;
      line-height:1.65;
    }

    .about-visual{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0, 1.15fr) minmax(180px, .72fr);
      gap:16px;
      min-height:560px;
    }

    .about-hero-photo,
    .about-photo-stack figure{
      position:relative;
      margin:0;
      overflow:hidden;
      border-radius:20px;
      background:#e8f0f8;
      border:1px solid rgba(17,35,57,.10);
      box-shadow:0 26px 70px rgba(15,35,70,.16);
    }

    .about-hero-photo{
      min-height:560px;
    }

    .about-photo-stack{
      display:grid;
      gap:16px;
    }

    .about-photo-stack figure{
      min-height:272px;
      box-shadow:0 20px 46px rgba(15,35,70,.12);
    }

    .about-hero-photo img,
    .about-photo-stack img{
      width:100%;
      height:100%;
      display:block;
      object-fit:cover;
    }

    .about-hero-photo::after,
    .about-photo-stack figure::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, transparent 58%, rgba(5,18,39,.18));
      pointer-events:none;
    }

    .about-badge-card{
      position:absolute;
      left:26px;
      bottom:26px;
      z-index:3;
      width:min(300px, calc(100% - 52px));
      padding:16px 18px;
      border-radius:16px;
      background:rgba(255,255,255,.94);
      border:1px solid rgba(255,255,255,.7);
      box-shadow:0 20px 50px rgba(4,16,34,.20);
      backdrop-filter:blur(10px);
    }

    .about-badge-card strong{
      display:block;
      color:#071733;
      font-size:17px;
      font-weight:900;
      margin-bottom:5px;
    }

    .about-badge-card span{
      display:block;
      color:#536981;
      font-size:13.5px;
      line-height:1.55;
    }

/* PROCESS */  
    .process{  
      display:grid;  
      grid-template-columns: repeat(4, 1fr);  
      gap:14px;  
    }  
    .step{  
      border:1px solid var(--border);  
      border-radius: 18px;  
      background: rgba(255,255,255,.92);  
      padding:16px;  
      box-shadow: 0 12px 28px rgba(6,36,68,.12);  
    }  
    .step .num{  
      display:inline-flex;  
      width:38px; height:38px;  
      border-radius: 14px;  
      align-items:center; justify-content:center;  
      background: rgba(0,102,214,.10);  
      border:1px solid rgba(0,102,214,.22);  
      font-weight:900;  
      margin-bottom:10px;  
    }  
    .step h4{ margin:0 0 6px; font-size:15.5px }  
    .step p{ margin:0; color:var(--muted); font-size:13.8px; line-height:1.6 }  
  
    /* CONTACT */  
    #contact, #contact * {  
      font-family: "Manrope", "Segoe UI", Arial, sans-serif;  
    }  
    .contact{  
      display:grid;  
      grid-template-columns: 1.1fr .9fr;  
      gap:18px;  
      align-items:start;  
    }  
    .contact-card{  
      border:1px solid var(--border);  
      border-radius: var(--radius);  
      background: rgba(255,255,255,.94);  
      box-shadow: var(--shadow);  
      padding:22px;  
    }  
    form{ display:grid; gap:12px }  
    .row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px }  
    label{ font-size:13px; color:var(--muted); font-weight:700 }  
    input, select, textarea{  
      width:100%;  
      padding:12px 12px;  
      border-radius: 14px;  
      border:1px solid var(--border);  
      background: rgba(255,255,255,.9);  
      color: var(--text);  
      outline:none;  
      font-size:14.5px;  
    }  
    textarea{ min-height:110px; resize:vertical }  
    input::placeholder, textarea::placeholder{ color: rgba(167,176,192,.75) }  
  
    .contact-side{  
      border:1px solid var(--border);  
      border-radius: var(--radius);  
      background: rgba(255,255,255,.94);  
      box-shadow: var(--shadow);  
      padding:22px;  
      display:grid;  
      gap:12px;  
    }  
    .contact-side-heading{  
      border-bottom:1px solid var(--border);  
      padding-bottom:10px;  
      margin-bottom:10px;  
    }  
    .contact-side-heading h3{  
      margin:0 0 4px;  
      color:#132034;  
      font-size:17px;  
    }  
    .contact-side-heading p{  
      margin:0;  
      color:var(--muted);  
      font-size:13.8px;  
      line-height:1.5;  
    }  
    .contact-matrix{  
      display:grid;  
      grid-template-columns: repeat(3, 1fr);  
      gap:10px;  
      margin-bottom:18px;  
    }  
    .contact-matrix-item{  
      border:1px solid var(--border);  
      border-radius: 14px;  
      background: rgba(0,102,214,.05);  
      padding:10px;  
      text-align:center;  
    }  
    .contact-matrix-item .label{  
      margin:0;  
      color:var(--muted);  
      font-size:12px;  
      text-transform: uppercase;  
      letter-spacing:0.8px;  
    }  
    .contact-matrix-item .value{  
      margin:4px 0 0;  
      color:#132034;  
      font-weight:700;  
      font-size:14px;  
    }  
    .info-box{  
      border:1px solid var(--border);  
      border-radius: 18px;  
      background: rgba(255,255,255,.9);  
      padding:14px;  
    }  
    .info-box b{  
      display:block;  
      margin-bottom:4px;  
      color:#132034;  
      font-size:14px;  
    }  
    .info-box span{  
      color:var(--muted);  
      line-height:1.5;  
      font-size:14px;  
    }  
    .info-box a{  
      color:var(--brand);  
      font-weight:700;  
    }  
    .info-box b{ display:block; margin-bottom:4px }  
    .info-box span{ color:var(--muted); line-height:1.55 }  

    /* Professional Work Process */
    .process-section{
      position:relative;
      overflow:hidden;
      padding:82px 0;
      background:
        linear-gradient(180deg, rgba(245,250,255,.95) 0%, rgba(255,255,255,.98) 100%);
      border-top:1px solid rgba(17,35,57,.06);
      border-bottom:1px solid rgba(17,35,57,.06);
    }

    .process-section .section-head{
      justify-content:center;
      text-align:center;
      margin-bottom:34px;
    }

    .process-section .section-title{
      max-width:920px;
      margin:0 auto;
      text-align:center;
    }

    .process-section .section-title .pill{
      margin-inline:auto;
    }

    .process-section .section-title h2{
      max-width:880px;
      margin-inline:auto;
      color:#071733;
      letter-spacing:0;
    }

    .process-section .section-title p{
      max-width:720px;
      margin-inline:auto;
      color:#4a607a;
    }

    .process-section .process{
      position:relative;
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:18px;
      align-items:stretch;
    }

    .process-section .process::before{
      content:"";
      position:absolute;
      left:8%;
      right:8%;
      top:58px;
      height:2px;
      background:linear-gradient(90deg, transparent, rgba(12,84,216,.26), rgba(31,166,216,.34), transparent);
      z-index:0;
    }

    .process-section .step{
      position:relative;
      z-index:1;
      min-height:300px;
      padding:24px;
      border-radius:18px;
      border:1px solid rgba(17,35,57,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,249,255,.94));
      box-shadow:0 20px 46px rgba(15,35,70,.10);
      display:flex;
      flex-direction:column;
      transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }

    .process-section .step:hover{
      transform:translateY(-6px);
      border-color:rgba(12,84,216,.24);
      box-shadow:0 28px 62px rgba(15,35,70,.15);
    }

    .process-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:26px;
    }

    .process-icon{
      width:70px;
      height:70px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, #0b3bbd, #1aa4db);
      border:5px solid #fff;
      box-shadow:0 16px 32px rgba(12,84,216,.24);
      flex:0 0 70px;
    }

    .process-icon img{
      width:32px;
      height:32px;
      display:block;
      object-fit:contain;
      filter:brightness(0) invert(1);
    }

    .process-section .step .num{
      width:auto;
      height:auto;
      margin:0;
      border:0;
      border-radius:0;
      background:transparent;
      color:rgba(7,23,51,.12);
      font-size:42px;
      line-height:1;
      font-weight:950;
      letter-spacing:0;
    }

    .process-section .step h4{
      margin:0 0 10px;
      color:#0a1b36;
      font-size:21px;
      line-height:1.22;
      font-weight:900;
      letter-spacing:0;
    }

    .process-section .step p{
      margin:0;
      color:#4d637d;
      font-size:14.5px;
      line-height:1.72;
    }

    .process-meta{
      display:inline-flex;
      align-items:center;
      width:max-content;
      max-width:100%;
      min-height:32px;
      margin-top:auto;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(12,84,216,.08);
      border:1px solid rgba(12,84,216,.14);
      color:#174b86;
      font-size:12px;
      font-weight:850;
    }

    #reviews{
      overflow-x:clip;
    }

    .review-feedback-grid{
      display:grid;
      grid-template-columns:minmax(0,1.45fr) minmax(0,1fr);
      gap:20px;
      margin-top:30px;
      align-items:stretch;
    }

    .review-feedback-grid > *{
      min-width:0;
      max-width:100%;
    }

    .review-slider-box,
    .review-form-box{
      border:1px solid rgba(17,35,57,.10);
      border-radius:24px;
      background:
        linear-gradient(165deg, rgba(255,255,255,.94), rgba(240,248,255,.86) 52%),
        rgba(255,255,255,.90);
      box-shadow:0 18px 38px rgba(7,33,61,.12);
      padding:24px;
    }

    .review-slider-box{
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .review-form-box{
      max-height:680px;
      overflow:auto;
      scrollbar-width:thin;
    }

    .review-summary-bar{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      padding:14px 16px;
      border:1px solid rgba(0,102,214,.16);
      border-radius:16px;
      background:linear-gradient(120deg, rgba(0,102,214,.12), rgba(0,167,201,.10));
      margin-bottom:18px;
    }

    .review-rating-hero{
      display:flex;
      align-items:center;
      gap:12px;
    }

    .review-rating-number{
      font-size:38px;
      line-height:1;
      font-weight:800;
      letter-spacing:-1px;
      color:#0f2843;
    }

    .review-stars{
      margin:0;
      color:#f38e3e;
      font-size:16px;
      letter-spacing:1px;
      font-weight:700;
    }

    .review-stars-icons{
      display:flex;
      align-items:center;
      gap:6px;
    }

    .star-icon{
      width:16px;
      height:16px;
      object-fit:contain;
      filter:brightness(0) saturate(100%) invert(73%) sepia(36%) saturate(4156%) hue-rotate(337deg) brightness(98%) contrast(94%) drop-shadow(0 2px 4px rgba(0,0,0,.3));
    }

    .review-rating-meta{
      margin:4px 0 0;
      color:#5a6f86;
      font-size:12px;
    }

    .review-badges{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:8px;
    }

    .review-badge{
      font-size:11px;
      font-weight:700;
      letter-spacing:.3px;
      text-transform:uppercase;
      color:#1a3a5a;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(0,102,214,.20);
      background:rgba(255,255,255,.85);
    }

    .review-headline-row{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      margin-bottom:8px;
    }

    .review-box-title{
      margin:0;
      font-size:22px;
      line-height:1.2;
      font-weight:800;
      letter-spacing:-.3px;
      color:#12253d;
    }

    .review-box-desc{
      margin:0 0 16px;
      color:#4f647c;
      line-height:1.65;
      font-size:14px;
    }

    .review-marquee{
      overflow:auto;
      scroll-snap-type:x mandatory;
      scrollbar-width:none;
      -ms-overflow-style:none;
      padding-bottom:4px;
    }

    .review-marquee::-webkit-scrollbar{
      display:none;
    }

    .review-marquee-track{
      display:flex;
      gap:14px;
      width:max-content;
    }

    .review-card{
      width:clamp(280px, 32vw, 330px);
      min-height:230px;
      scroll-snap-align:start;
      border:1px solid rgba(17,35,57,.14);
      border-radius:18px;
      background:linear-gradient(170deg, rgba(255,255,255,.98), rgba(243,249,255,.95));
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .review-card-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:10px;
    }

    .review-card-user{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }

    .review-avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.28);
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      display:flex;
      align-items:center;
      justify-content:center;
      color:#00121f;
      font-size:13px;
      font-weight:800;
      flex-shrink:0;
    }

    .review-name{
      margin:0;
      color:#1a314d;
      font-size:14px;
      font-weight:700;
    }

    .review-from{
      margin:2px 0 0;
      color:#5f748c;
      font-size:12px;
      line-height:1.4;
    }

    .review-source{
      font-size:11px;
      font-weight:700;
      color:#0f2f4c;
      background:linear-gradient(135deg, #c3efff, #8fd5ff);
      border-radius:999px;
      padding:6px 10px;
      white-space:nowrap;
      flex-shrink:0;
    }

    .review-card-stars{
      display:flex;
      align-items:center;
      gap:5px;
      margin-top:-2px;
    }

    .review-star-icon{
      width:14px;
      height:14px;
      object-fit:contain;
      filter:brightness(0) saturate(100%) invert(73%) sepia(36%) saturate(4156%) hue-rotate(337deg) brightness(98%) contrast(94%) drop-shadow(0 2px 4px rgba(0,0,0,.26));
    }

    .review-star-icon.is-inactive,
    .recent-star-icon.is-inactive{
      opacity:.34;
      filter:grayscale(70%);
    }

    .review-rating-chip{
      margin-left:6px;
      border-radius:999px;
      border:1px solid rgba(0,102,214,.22);
      background:rgba(255,255,255,.9);
      color:#1d4268;
      font-size:11px;
      font-weight:700;
      letter-spacing:.2px;
      padding:3px 8px;
    }

    .review-text{
      margin:0;
      color:#405873;
      font-size:14px;
      line-height:1.65;
    }

    .review-time{
      margin-top:auto;
      padding-top:10px;
      border-top:1px solid rgba(17,35,57,.10);
      color:#627a93;
      font-size:12px;
    }

    .review-nav{
      display:flex;
      gap:8px;
      flex-shrink:0;
      margin-left:auto;
    }

    .review-arrow{
      width:38px;
      height:38px;
      border:1px solid rgba(17,35,57,.14);
      border-radius:12px;
      background:rgba(255,255,255,.88);
      color:#1a3e63;
      font-size:18px;
      line-height:1;
      cursor:pointer;
      transition:.2s ease;
    }

    .review-arrow:hover{
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      color:#ffffff;
      border-color:transparent;
    }

    .review-dots{
      display:flex;
      justify-content:center;
      gap:8px;
      margin-top:4px;
    }

    .review-dot{
      width:7px;
      height:7px;
      border:none;
      padding:0;
      cursor:pointer;
      border-radius:50%;
      background:rgba(17,35,57,.30);
      transition:.2s ease;
    }

    .review-dot.active{
      width:24px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
    }

    .review-note{
      margin:12px 0 0;
      color:#9bb0d3;
      font-size:12px;
      line-height:1.6;
      text-align:center;
    }

    .review-form-title{
      margin:0;
      font-size:20px;
      line-height:1.2;
      color:#132034;
      letter-spacing:-.2px;
    }

    .review-form-subtitle{
      margin:8px 0 16px;
      color:#a7b0c0;
      font-size:14px;
      line-height:1.6;
    }

    .review-form{
      display:grid;
      gap:14px;
    }

    .review-form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }

    .review-form-group{
      display:flex;
      flex-direction:column;
      gap:6px;
    }

    .review-form label{
      font-size:12px;
      font-weight:700;
      color:#29445f;
    }

    .review-form input,
    .review-form select,
    .review-form textarea{
      width:100%;
      min-width:0;
      background:rgba(255,255,255,.94);
      border:1px solid rgba(17,35,57,.14);
      color:#132034;
      border-radius:12px;
      padding:12px;
      font-size:14px;
      transition:.2s ease;
      outline:none;
    }

    .review-form textarea{
      min-height:126px;
      resize:vertical;
    }

    .review-form input:focus,
    .review-form select:focus,
    .review-form textarea:focus{
      border-color:rgba(0,102,214,.65);
      box-shadow:0 0 0 3px rgba(0,102,214,.14);
    }

    .review-stars-row{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }

    .review-star-option{
      position:relative;
    }

    .review-star-option input{
      position:absolute;
      opacity:0;
      pointer-events:none;
    }

    .review-star-option label{
      display:inline-flex;
      align-items:center;
      padding:8px 11px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.03);
      color:#d6e2fb;
      font-size:12px;
      cursor:pointer;
      transition:.2s ease;
    }

    .review-star-option input:checked + label,
    .review-star-option label:hover{
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      color:#00121f;
      border-color:transparent;
    }

    .review-checkbox{
      display:flex;
      align-items:flex-start;
      gap:9px;
      color:#b7c8e8;
      font-size:12px;
      line-height:1.6;
    }

    .review-checkbox input{
      width:auto;
      margin-top:2px;
      accent-color:#00d4ff;
    }

    .review-submit{
      min-height:48px;
      border:none;
      border-radius:12px;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      color:#00121f;
      font-size:15px;
      font-weight:800;
      cursor:pointer;
      transition:.2s ease;
      box-shadow:0 12px 24px rgba(30,140,255,.25);
    }

    .review-submit:hover{
      transform:translateY(-1px);
    }

    .review-form-note{
      color:#607991;
      font-size:12px;
      line-height:1.5;
      margin-top:8px;
    }

    .review-form-success{
      margin:8px 0 0;
      color:#8de8ff;
      font-size:13px;
      font-weight:700;
    }

    .recent-reviews-section{
      margin-top:32px;
      text-align:center;
    }

    .recent-reviews-title{
      margin:0;
      font-size:25px;
      color:#132034;
      letter-spacing:-.2px;
    }

    .recent-reviews-desc{
      margin:8px 0 0;
      color:#607991;
      font-size:14px;
    }

    .recent-reviews-grid{
      margin-top:20px;
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
      gap:14px;
    }

    .recent-review-card{
      border:1px solid rgba(17,35,57,.14);
      border-radius:18px;
      background:linear-gradient(170deg, rgba(255,255,255,.98), rgba(243,249,255,.95));
      padding:16px;
      text-align:left;
      display:flex;
      flex-direction:column;
      gap:10px;
      box-shadow:0 12px 30px rgba(6,36,68,.11);
    }

    .recent-review-card-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:10px;
    }

    .recent-review-card-user{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }

    .recent-review-avatar{
      width:38px;
      height:38px;
      border-radius:50%;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      color:#00121f;
      font-size:12px;
      font-weight:800;
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
    }

    .recent-review-name{
      margin:0;
      font-size:14px;
      color:#1a314d;
      font-weight:700;
    }

    .recent-review-from{
      margin:2px 0 0;
      font-size:12px;
      color:#5f748c;
    }

    .recent-review-source{
      font-size:11px;
      background:rgba(0,212,255,.18);
      color:#8de8ff;
      border:1px solid rgba(0,212,255,.40);
      padding:5px 8px;
      border-radius:999px;
      white-space:nowrap;
      font-weight:700;
    }

    .recent-review-stars{
      display:flex;
      align-items:center;
      gap:5px;
      margin:0;
    }

    .recent-star-icon{
      width:13px;
      height:13px;
      object-fit:contain;
      filter:brightness(0) saturate(100%) invert(73%) sepia(36%) saturate(4156%) hue-rotate(337deg) brightness(98%) contrast(94%) drop-shadow(0 2px 4px rgba(0,0,0,.24));
    }

    .recent-review-text{
      margin:0;
      color:#405873;
      font-size:13px;
      line-height:1.6;
    }

    .recent-review-time{
      margin-top:auto;
      color:#627a93;
      font-size:11px;
      padding-top:8px;
      border-top:1px solid rgba(17,35,57,.10);
    }

    @media (max-width:1100px){
      .review-feedback-grid{
        grid-template-columns:1fr;
      }
      .recent-reviews-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
    }

    @media (max-width:767px){
      .review-feedback-grid{
        margin-top:22px;
        gap:14px;
      }

      .review-slider-box,
      .review-form-box{
        padding:16px;
        border-radius:18px;
      }

      .review-form-box{
        max-height:none;
        overflow:visible;
      }

      .review-summary-bar{
        flex-direction:column;
        align-items:flex-start;
        padding:12px;
        gap:12px;
      }

      .review-rating-hero{
        width:100%;
        align-items:flex-start;
      }

      .review-rating-number{
        font-size:32px;
      }

      .review-badges{
        justify-content:flex-start;
        width:100%;
        gap:6px;
      }

      .review-badge{
        font-size:10px;
        padding:6px 9px;
      }

      .review-headline-row{
        flex-direction:column;
        gap:10px;
        margin-bottom:10px;
      }

      .review-nav{
        width:100%;
        justify-content:flex-end;
      }

      .review-arrow{
        width:42px;
        height:42px;
      }

      .review-marquee{
        margin-inline:-2px;
      }

      .review-marquee-track{
        width:100%;
        gap:10px;
      }

      .review-form-row{
        grid-template-columns:1fr;
      }

      .review-card{
        width:100%;
        min-width:100%;
        max-width:100%;
        flex:0 0 100%;
        box-sizing:border-box;
        padding:14px;
      }

      .review-card-top,
      .recent-review-card-top{
        gap:8px;
      }

      .review-source,
      .recent-review-source{
        max-width:46%;
        overflow:hidden;
        text-overflow:ellipsis;
      }

      .review-form input,
      .review-form select,
      .review-form textarea{
        font-size:16px;
      }

      .review-form-note{
        margin-top:2px;
      }

      .review-submit{
        width:100%;
      }

      .recent-reviews-grid{
        grid-template-columns:1fr;
        gap:12px;
      }

      .recent-review-card{
        padding:14px;
      }

      .recent-reviews-title{
        font-size:22px;
      }

      .review-box-title{
        font-size:20px;
      }

      .service-icon{ width:14px; height:14px; flex-basis:14px }
    }

    @media (max-width:420px){
      .review-slider-box,
      .review-form-box{
        padding:14px;
      }

      .review-card{
        width:100%;
        min-width:100%;
        max-width:100%;
      }

      .review-avatar,
      .recent-review-avatar{
        width:34px;
        height:34px;
        font-size:11px;
      }

      .review-name,
      .recent-review-name{
        font-size:13px;
      }
    }

    /* FOOTER */  
    footer{   
      padding:42px 0 18px;
    }  
    .footer-grid{  
      display:grid;  
      grid-template-columns: repeat(4, minmax(180px, 1fr));  
      gap:16px;  
      align-items:start;  
      padding:0px 0;  
    }  
    .footer-card{  
      background: rgba(255,255,255,.76);  
      border-radius: var(--radius);  
      padding:18px;  
    }  
    .footer-about-card{  
      display:flex;  
      flex-direction:column;  
      gap:12px;  
    }  
    .footer-logo{  
      display:flex;  
      align-items:center;  
      gap:10px;  
      margin-bottom:6px;  
    }  
    .footer-logo span{  
      font-weight:900;  
      font-size:18px;  
      color:#132034;  
    }  
    .footer-title{  
      font-weight:800;  
      margin:0 0 10px;  
      letter-spacing:-.2px;  
      color:#132034;  
      font-size:15px;  
    }  
    .footer-text{  
      margin:0 0 16px;  
      color:var(--muted);  
      line-height:1.6;  
      font-size:14.5px;  
    }  
    .footer-anchors{  
      display:flex;  
      gap:8px;  
      flex-wrap:wrap;  
    }  
    .btn-secondary{  
      border:1px solid var(--border);  
      color:var(--text);  
      background: rgba(255,255,255,.05);  
    }  
    .footer-link-list, .contact-details{  
      list-style:none;  
      padding:0;  
      margin:0;  
      display:grid;  
      gap:8px;  
    }  
    .footer-link-list li a{  
      color:var(--muted);  
      text-decoration:none;  
      font-size:14px;  
    }  
    .footer-link-list li a:hover{  
      color:var(--text);  
    }  
    .contact-details li{  
      color:var(--muted);  
      font-size:14px;  
      line-height:1.6;  
    }  
    .contact-details a{  
      color:var(--brand);  
      text-decoration:none;  
    }  
    .social-icons{  
      display:flex;  
      gap:10px;  
      margin-top:10px;  
    }  
    .social-icons a{  
      display:inline-flex;  
      align-items:center;  
      justify-content:center;  
      width:34px;  
      height:34px;  
      border-radius:8px;  
      border:1px solid var(--border);  
      background: rgba(255,255,255,.9);  
    }  
    .footer-text{  
      margin:0;  
      color:var(--muted);  
      line-height:1.65;  
      font-size:14.5px;  
    }  
    .footer-links{  
      display:grid;  
      gap:10px;  
      margin-top:10px;  
    }  
    .footer-links a{  
      color:var(--muted);  
      padding:8px 10px;  
      border-radius: 12px;  
      background: rgba(255,255,255,.02);  
      border:1px solid rgba(255,255,255,.05);  
      transition:.2s ease;  
    }  
    .footer-links a:hover{ color:var(--text); background: rgba(255,255,255,.06) }  
    /* Professional footer additions */
    .footer-logo{ display:flex; gap:12px; align-items:center }
    .footer-logo img{ height:44px; width:auto; border-radius:0 }
    .footer-about{ color:var(--muted); line-height:1.6 }
    .footer .social-icons{ display:flex; gap:10px; margin-top:8px }
    .social-icons a{ display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:8px; background:rgba(255,255,255,.9); color:var(--text); text-decoration:none }
    .social-icons img{ width:16px; height:16px; object-fit:contain; display:block }
    .contact-list{ color:var(--muted); line-height:1.6 }
    .footer-cta{ margin-top:12px }
  
    .footer-bottom{  
      margin-top:18px;  
      padding-top:14px;  
      border-top:1px solid var(--border);  
      display:flex;  
      justify-content:space-between;  
      align-items:center;  
      flex-wrap:wrap;  
      gap:10px;  
      color:var(--muted);  
      font-size:13.5px;  
    }  

    /* Soft entrance motion for a more polished first impression */
    .hero-card,
    .card,
    .step,
    .contact-card,
    .review-slider-box,
    .review-form-box,
    .footer-card{
      animation:fadeUp .55s ease both;
    }

    .card:nth-child(2),
    .step:nth-child(2){ animation-delay:.06s; }
    .card:nth-child(3),
    .step:nth-child(3){ animation-delay:.12s; }
    .card:nth-child(4),
    .step:nth-child(4){ animation-delay:.18s; }

    @keyframes fadeUp{
      from{ opacity:0; transform:translateY(14px); }
      to{ opacity:1; transform:translateY(0); }
    }
    .footer-legal-links{  
      display:flex;  
      align-items:center;  
      gap:14px;  
      flex-wrap:wrap;  
    }  
    .footer-legal-links a{  
      color:var(--muted);  
      text-decoration:none;  
      font-size:13.5px;  
    }  
    .footer-legal-links a:hover{  
      color:var(--text);  
    }  
  
    /* RESPONSIVE */  
    @media (max-width: 980px){
      .container{ padding:0 14px }
      .topbar-inner{ padding:10px 0 }
      .brand{ min-width:140px }
      .logo{ height:50px }
      .hero-grid{ grid-template-columns: 1fr }
      .grid{ grid-template-columns: repeat(2, 1fr) }
.about-premium{ grid-template-columns:1fr; gap:34px; }
      .about-copy{ max-width:760px; }
      .about-visual{ min-height:460px; grid-template-columns:1fr .8fr; }
      .about-hero-photo{ min-height:460px; }
      .about-photo-stack figure{ min-height:222px; }
      .process-section{ padding:64px 0; }
      .process-section .process{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
      .process-section .process::before{ display:none; }
      .process-section .step{ min-height:260px; }
.process{ grid-template-columns: repeat(2, 1fr) }
      .contact{ grid-template-columns: 1fr }
      .footer-grid{ grid-template-columns: 1fr 1fr }
    }
    @media (max-width: 680px){
      .logo{ height:50px }

      h1{ font-size:30px }
      .hero{ padding:32px 0 16px; }
      #home.hero{ margin-top:-74px; padding-top:106px; }
      section{ padding:32px 0; }
      .hero-card{ padding:18px; min-height:420px }
.grid{ grid-template-columns: 1fr }
.process{ grid-template-columns: 1fr }
.about-actions .btn{ width:100%; justify-content:center; }
      #about{ padding:44px 0; }
      .about-premium{ gap:26px; }
      .about-copy h2{ font-size:34px; }
      .about-lead{ font-size:15.5px; line-height:1.7; }
      .about-proof-row{ grid-template-columns:1fr; margin:22px 0 20px; }
      .about-proof{ min-height:76px; border-right:0; border-bottom:1px solid rgba(17,35,57,.08); }
      .about-proof:last-child{ border-bottom:0; }
      .about-visual{ grid-template-columns:1fr; min-height:auto; gap:12px; }
      .about-hero-photo{ min-height:320px; border-radius:16px; }
      .about-photo-stack{ grid-template-columns:1fr 1fr; gap:12px; }
      .about-photo-stack figure{ min-height:170px; border-radius:14px; }
      .about-badge-card{ position:relative; left:auto; bottom:auto; width:auto; margin-top:-58px; margin-inline:14px; }
      .process-section{ padding:44px 0; }
      .process-section .section-head{ margin-bottom:24px; }
      .process-section .section-title h2{ font-size:30px; }
      .process-section .process{ grid-template-columns:1fr; gap:14px; }
      .process-section .step{ min-height:auto; padding:20px; border-radius:16px; }
      .process-top{ margin-bottom:18px; }
      .process-icon{ width:58px; height:58px; flex-basis:58px; border-width:4px; }
      .process-icon img{ width:27px; height:27px; }
      .process-section .step .num{ font-size:34px; }
      .process-section .step h4{ font-size:19px; }
      .process-meta{ margin-top:18px; }
      .nav{ display:none }
      .hamburger{ display:inline-flex }
      .nav.mobile{
        display:grid;
        position:absolute;
        top:64px;
        right:12px;
        left:12px;
        background: rgba(255,255,255,.98);
        border:1px solid var(--border);
        border-radius: 14px;
        padding:8px;
        box-shadow: var(--shadow);
      }
      .nav.mobile a{ padding:10px 12px; font-size:15px }
      .hero-actions a{ flex:1; min-width:0; justify-content:center }
      .footer-grid{ grid-template-columns: 1fr 1fr }
      .footer-bottom{ flex-direction:column; gap:6px; align-items:center; text-align:center }
    }
    @media (max-width: 480px){
      .brand{ min-width:120px; flex-shrink:0; }
      .logo{ height:50px }
      .topbar-inner{ gap:6px; padding:8px 0 }
      header.topbar .btn{ padding:8px 4px; font-size:11px; gap:4px; border-radius:12px }
      .hamburger{ width:36px; height:36px; }
      h1{ font-size:24px }
      #home.hero{ margin-top:-66px; padding-top:98px; }
      .hero-card{ min-height:380px }
.pill{ font-size:12px; padding:6px 10px }
      .footer-grid{ grid-template-columns: 1fr }
    }

/* Local SVG service icons: reliable fallback when webfont icons are blocked */
.service-icon .service-material-icon{
  width:36px !important;
  height:36px !important;
  display:block !important;
  object-fit:contain !important;
  filter:none !important;
  opacity:1 !important;
  visibility:visible !important;
  flex:0 0 36px !important;
}

@media(max-width:640px){
  .service-icon .service-material-icon{
    width:29px !important;
    height:29px !important;
    flex-basis:29px !important;
  }
}

/* Home page refresh */
#home.hero{
  margin-top:0;
  padding:22px 0 28px;
}

#home .hero-card{
  min-height:520px;
  padding:48px;
  border-radius:18px;
  display:flex;
  align-items:center;
  box-shadow:0 24px 64px rgba(7,28,58,.18);
}

#home .hero-card .hero-bg::after{
  background:
    linear-gradient(90deg, rgba(5,18,39,.84) 0%, rgba(5,18,39,.62) 42%, rgba(5,18,39,.18) 72%, rgba(5,18,39,.42) 100%),
    linear-gradient(180deg, rgba(5,18,39,.16), rgba(5,18,39,.28));
}

#home .hero-content{
  width:min(820px, 60%);
  min-width:0;
}

#home .hero-card .pill{
  padding:10px 17px;
  background:rgba(255,255,255,.20);
  border-color:rgba(255,255,255,.38);
  color:#fff;
  backdrop-filter:blur(10px);
}

#home .hero-card h1{
  max-width:820px;
  font-size:clamp(38px, 4.5vw, 66px);
  line-height:1.03;
  letter-spacing:0;
  margin-bottom:18px;
}

#home .hero-card .lead{
  max-width:710px;
  font-size:18px;
  line-height:1.7;
  color:rgba(255,255,255,.94);
}

#home .hero-actions{
  margin-top:22px;
  gap:14px;
}

#home .hero-actions .btn{
  min-height:50px;
  border-radius:12px;
  padding:0 22px;
}

#home .hero-actions .btn-ghost{
  color:#061733;
  border:0;
  box-shadow:0 14px 30px rgba(4,16,34,.18);
}

.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.hero-proof span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:36px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  font-size:14px;
  font-weight:750;
  line-height:1;
  backdrop-filter:blur(10px);
}

.hero-proof img{
  width:18px;
  height:18px;
  object-fit:contain;
  display:block;
}

.hero-note{
  margin-top:18px !important;
  margin-bottom:0 !important;
}

#services .section-head{
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  margin-bottom:36px;
}

#services .section-title{
  width:100%;
  max-width:980px;
  margin:0 auto;
  text-align:center;
}

#services .section-title .pill{
  margin-left:auto;
  margin-right:auto;
}

#services .section-title h2{
  max-width:900px;
  margin:0 auto 12px;
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.05;
  color:#061733;
}

#services .section-title p{
  max-width:760px;
  margin:0 auto;
  text-align:center;
  color:#4b5d78;
  font-size:17px;
}

#services .grid{
  gap:34px;
}

#services .card{
  height:auto;
  min-height:410px;
  grid-template-rows:210px 1fr;
  border-radius:8px;
  box-shadow:0 18px 42px rgba(7,35,72,.13);
}

#services .card .body{
  padding:0 22px 22px;
  gap:12px;
  text-align:center;
  align-items:center;
  min-height:0;
  overflow:visible;
  position:relative;
}

#services .card .title-row{
  align-items:center;
  justify-content:center;
  width:100%;
}

#services .card h3{
  font-size:22px;
  line-height:1.2;
  gap:0;
  justify-content:center;
  text-align:center;
}

.home-service-circle{
  width:76px;
  height:76px;
  margin:-38px auto 4px;
  position:relative;
  z-index:3;
  background:linear-gradient(135deg, #0634b8, #149ce7);
  border:1px solid rgba(255,255,255,.78);
  border-radius:50%;
  box-shadow:0 14px 30px rgba(10,65,170,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 76px;
  overflow:visible;
}

.home-service-icon{
  width:36px;
  height:36px;
  object-fit:contain;
  flex:0 0 36px;
  display:block;
  filter:none;
  opacity:1;
  visibility:visible;
}

#services .card p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:4px;
}

#services .card .more{
  margin-top:auto;
  width:100%;
  min-height:48px;
  border-radius:10px;
  background:linear-gradient(135deg, #052da8, #14ace3);
  color:#fff;
  font-weight:900;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  box-shadow:0 14px 30px rgba(0,102,214,.20);
}

#services .card .more::after{
  content:">";
  width:20px;
  height:20px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  line-height:1;
  font-weight:900;
}

@media(max-width:980px){
  #home.hero{
    padding:16px 0 24px;
  }

  #home .hero-card{
    min-height:440px;
    padding:34px;
  }

  #home .hero-content{
    width:min(720px, 78%);
  }
}

@media(max-width:680px){
  #home.hero{
    margin-top:0;
    padding:16px 0 22px;
  }

  #home .hero-card{
    min-height:520px;
    padding:24px;
    align-items:flex-end;
  }

  #home .hero-card .hero-bg::after{
    background:linear-gradient(180deg, rgba(5,18,39,.32) 0%, rgba(5,18,39,.78) 58%, rgba(5,18,39,.90) 100%);
  }

  #home .hero-content{
    width:100%;
  }

  #home .hero-card .lead{
    font-size:15px;
  }

  #home .hero-actions .btn{
    min-height:46px;
    padding:0 14px;
  }

  .hero-proof{
    gap:8px;
  }

  .hero-proof span{
    font-size:12.5px;
    min-height:32px;
    padding:7px 10px;
  }

  #services .grid{
    gap:18px;
  }

  #services .card{
    min-height:0;
    grid-template-rows:190px 1fr;
  }

  .home-service-circle{
    width:58px;
    height:58px;
    flex-basis:58px;
    margin:-29px auto 2px;
  }

  .home-service-icon{
    width:29px;
    height:29px;
    flex-basis:29px;
  }

  #services .card h3{
    font-size:20px;
  }
}

/* Full-bleed professional home hero */
.home-page .topbar{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:linear-gradient(180deg, rgba(5,17,35,.64), rgba(5,17,35,.16));
  border-bottom:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.home-page .topbar .container{
  max-width:var(--max);
  width:100%;
}

.home-page .topbar .container{
  padding:0 18px;
}

.home-page .brand{
  min-width:190px;
}

.home-page .nav a{
  color:rgba(255,255,255,.9);
  background:transparent;
}

.home-page .nav a img{
  filter:brightness(0) invert(1);
  opacity:.88;
}

.home-page .nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.14);
}

.home-page .nav a:hover img{
  filter:brightness(0) invert(1);
  opacity:1;
}

.home-page .hamburger{
  color:#fff;
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.12);
}

#home.hero{
  min-height:100vh;
  padding:0;
  margin-top:0;
  display:flex;
  align-items:stretch;
  position:relative;
  overflow:hidden;
  background:#061326;
}

#home.hero > .container{
  max-width:none;
  width:100%;
  padding:0;
  display:flex;
  align-items:stretch;
}

#home .hero-grid,
#home .hero-card{
  min-height:100vh;
  width:100%;
}

#home .hero-card{
  border:0;
  border-radius:0;
  padding:clamp(120px, 13vh, 172px) max(18px, calc((100vw - var(--max)) / 2 + 18px)) clamp(82px, 10vh, 132px);
  box-shadow:none;
  background:transparent;
  align-items:center;
  isolation:isolate;
}

#home .hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(780px 520px at 18% 38%, rgba(0,102,214,.32), transparent 64%),
    linear-gradient(90deg, rgba(2,13,31,.92) 0%, rgba(3,16,38,.78) 38%, rgba(3,16,38,.28) 67%, rgba(3,16,38,.58) 100%);
}

#home .hero-card .hero-bg{
  border-radius:0;
}

#home .hero-card .hero-bg img{
  object-position:center;
  transform:scale(1.04);
  transition:opacity .8s ease, transform 7s ease;
}

#home .hero-card .hero-bg img.active{
  transform:scale(1);
}

#home .hero-card .hero-bg::after{
  background:
    linear-gradient(180deg, rgba(3,12,28,.14) 0%, rgba(3,12,28,.2) 58%, rgba(3,12,28,.84) 100%),
    linear-gradient(90deg, rgba(3,12,28,.9) 0%, rgba(3,12,28,.68) 42%, rgba(3,12,28,.18) 76%);
}

#home .hero-content{
  width:100%;
  max-width:var(--max);
  padding:0;
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 760px) minmax(310px, 430px);
  align-items:center;
  justify-content:space-between;
  gap:clamp(32px, 5.4vw, 92px);
}

#home .hero-content::before{
  content:"";
  position:absolute;
  left:-28px;
  top:2px;
  bottom:2px;
  width:4px;
  border-radius:999px;
  background:linear-gradient(180deg, #28b7ff, #ffffff, rgba(255,255,255,.12));
  box-shadow:0 0 30px rgba(40,183,255,.45);
}

#home .hero-copy{
  max-width:760px;
}

#home .hero-card .pill{
  margin-bottom:18px;
  background:rgba(255,255,255,.15);
  border-color:rgba(255,255,255,.28);
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22);
}

#home .hero-card h1{
  font-size:clamp(44px, 4.55vw, 74px);
  max-width:1080px;
  line-height:1.02;
  margin-bottom:22px;
  text-shadow:0 18px 42px rgba(0,0,0,.36);
}

#home .hero-card .lead{
  max-width:820px;
  font-size:clamp(16px, 1.25vw, 20px);
  line-height:1.75;
  color:rgba(255,255,255,.9);
  text-shadow:0 10px 28px rgba(0,0,0,.34);
}

#home .hero-actions{
  margin-top:30px;
}

#home .hero-actions .btn{
  min-height:54px;
  padding:0 26px;
  border-radius:14px;
}

#home .hero-actions .btn-primary{
  box-shadow:0 18px 42px rgba(0,102,214,.36);
}

#home .hero-actions .btn-ghost{
  background:rgba(255,255,255,.94);
}

#home .hero-proof{
  max-width:900px;
  margin-top:30px;
  gap:12px;
}

#home .hero-proof span{
  min-height:40px;
  padding:10px 14px;
  background:rgba(255,255,255,.13);
  border-color:rgba(255,255,255,.26);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16);
}

#home .hero-proof img{
  filter:brightness(0) invert(1);
}

#home .hero-note{
  margin-top:24px !important;
  font-size:15px;
  color:rgba(255,255,255,.78) !important;
}

#home .hero-service-panel{
  width:100%;
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.07)),
    rgba(4,18,42,.36);
  box-shadow:0 30px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  color:#fff;
}

#home .hero-panel-head{
  display:flex;
  align-items:center;
  gap:14px;
  padding-bottom:18px;
  margin-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.18);
}

#home .hero-panel-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:18px;
  background:linear-gradient(135deg, #123eb7, #28abe3);
  box-shadow:0 18px 38px rgba(0,102,214,.36);
}

#home .hero-panel-icon img,
#home .hero-panel-grid img{
  width:22px;
  height:22px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

#home .hero-panel-head p{
  margin:0 0 3px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

#home .hero-panel-head strong{
  display:block;
  color:#fff;
  font-size:20px;
  line-height:1.2;
}

#home .hero-panel-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

#home .hero-panel-grid span{
  min-height:48px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-weight:800;
  font-size:14px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
}

#home .hero-panel-footer{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:18px;
}

#home .hero-panel-footer div{
  min-height:74px;
  padding:14px;
  border-radius:18px;
  background:rgba(5,17,35,.36);
  border:1px solid rgba(255,255,255,.14);
}

#home .hero-panel-footer b{
  display:block;
  margin-bottom:4px;
  font-size:26px;
  line-height:1;
  color:#fff;
}

#home .hero-panel-footer span{
  display:block;
  color:rgba(255,255,255,.75);
  font-size:13px;
  font-weight:750;
  line-height:1.3;
}

@media(max-width:980px){
  .home-page .topbar .container{
    padding:0 18px;
  }

  .home-page .brand{
    min-width:150px;
  }

  #home .hero-card{
    padding:120px 32px 72px;
  }

  #home .hero-content{
    max-width:900px;
    grid-template-columns:1fr;
    gap:24px;
  }

  #home .hero-service-panel{
    max-width:620px;
  }
}

@media(max-width:680px){
  .home-page .topbar{
    background:linear-gradient(180deg, rgba(5,17,35,.82), rgba(5,17,35,.34));
  }

  .home-page .nav.mobile{
    background:rgba(255,255,255,.98);
  }

  .home-page .nav.mobile a{
    color:#2c4057;
  }

  .home-page .nav.mobile a img{
    filter:brightness(0) saturate(100%) invert(20%) sepia(18%) saturate(646%) hue-rotate(171deg) brightness(92%) contrast(89%);
  }

  #home.hero,
  #home .hero-grid,
  #home .hero-card{
    min-height:100svh;
  }

  #home .hero-card{
    padding:112px 20px 48px;
    align-items:flex-end;
  }

  #home .hero-card::before{
    background:
      linear-gradient(180deg, rgba(4,14,31,.20) 0%, rgba(4,14,31,.58) 42%, rgba(4,14,31,.94) 100%),
      radial-gradient(520px 380px at 22% 74%, rgba(0,102,214,.34), transparent 70%);
  }

  #home .hero-card .hero-bg::after{
    background:linear-gradient(180deg, rgba(3,12,28,.18) 0%, rgba(3,12,28,.62) 48%, rgba(3,12,28,.94) 100%);
  }

  #home .hero-content{
    width:100%;
    display:block;
  }

  #home .hero-content::before{
    left:0;
    top:-18px;
    bottom:auto;
    width:74px;
    height:4px;
  }

  #home .hero-card h1{
    font-size:clamp(34px, 10vw, 48px);
    line-height:1.03;
  }

  #home .hero-card .lead{
    font-size:15px;
    line-height:1.65;
  }

  #home .hero-actions{
    margin-top:22px;
  }

  #home .hero-actions .btn{
    min-height:48px;
    padding:0 14px;
  }

  #home .hero-proof{
    margin-top:20px;
  }

  #home .hero-proof span{
    min-height:34px;
    padding:8px 10px;
  }

  #home .hero-note{
    display:none;
  }

  #home .hero-service-panel{
    display:none;
  }
}

@media(max-width:420px){
  #home .hero-card{
    padding-left:16px;
    padding-right:16px;
  }

  #home .hero-card .pill{
    font-size:12px;
  }

  #home .hero-proof{
    display:grid;
    grid-template-columns:1fr 1fr;
  }
}

/* Unified review star color - matched to Aircon page */
.review-stars,
.review-star-option label,
.review-star-option input:checked + label,
.review-star-option label:hover{
  color:#f38e3e !important;
}

.star-icon,
.review-star-icon,
.recent-star-icon{
  filter:brightness(0) saturate(100%) invert(73%) sepia(36%) saturate(4156%) hue-rotate(337deg) brightness(98%) contrast(94%) drop-shadow(0 2px 4px rgba(0,0,0,.26)) !important;
}

.star-icon{
  filter:brightness(0) saturate(100%) invert(73%) sepia(36%) saturate(4156%) hue-rotate(337deg) brightness(98%) contrast(94%) drop-shadow(0 2px 4px rgba(0,0,0,.3)) !important;
}

.review-star-icon.is-inactive,
.recent-star-icon.is-inactive{
  opacity:.34;
  filter:grayscale(70%) !important;
}

/* Cleaner page rhythm: trims oversized empty gaps between sections */
section{
  padding-top:clamp(36px, 4.4vw, 58px);
  padding-bottom:clamp(36px, 4.4vw, 58px);
}

.section-head,
.process-section .section-head{
  margin-bottom:clamp(20px, 2.2vw, 30px);
}

#about,
#reviews,
#contact,
.process-section{
  padding-top:clamp(42px, 4.8vw, 64px);
  padding-bottom:clamp(42px, 4.8vw, 64px);
}

.review-feedback-grid{
  margin-top:clamp(18px, 2vw, 26px);
}

.services-showcase .service-media{
  cursor:zoom-in;
}

.services-showcase .service-media::after{
  pointer-events:none;
}

body.service-preview-open{
  overflow:hidden;
}

.service-preview-modal{
  position:fixed;
  inset:0;
  z-index:6000;
  display:grid;
  place-items:center;
  padding:clamp(18px, 3vw, 42px) clamp(14px, 3vw, 42px) max(132px, calc(clamp(18px, 3vw, 42px) + env(safe-area-inset-bottom)));
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .22s ease, visibility .22s ease;
}

.service-preview-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.service-preview-backdrop{
  position:absolute;
  inset:0;
  background:rgba(8, 18, 34, .74);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.service-preview-card{
  position:relative;
  z-index:1;
  width:min(1120px, 100%);
  max-height:min(760px, calc(100vh - 170px));
  border-radius:20px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(235,244,255,.98));
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 32px 90px rgba(0, 10, 26, .42);
  display:grid;
  grid-template-columns:70px minmax(0, 1fr) 70px;
  align-items:center;
}

.service-preview-figure{
  margin:0;
  min-width:0;
  background:#061733;
}

.service-preview-image{
  width:100%;
  height:min(620px, calc(100vh - 250px));
  min-height:280px;
  display:block;
  object-fit:contain;
  background:#061733;
}

.service-preview-figure figcaption{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:15px 22px;
  background:#061733;
  color:#fff;
}

.service-preview-title{
  font-weight:850;
  line-height:1.3;
}

.service-preview-count{
  flex:0 0 auto;
  min-width:62px;
  padding:7px 11px;
  border-radius:999px;
  text-align:center;
  font-size:13px;
  font-weight:850;
  color:#dcecff;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
}

.service-preview-close,
.service-preview-arrow{
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.service-preview-close{
  position:absolute;
  top:14px;
  right:14px;
  z-index:3;
  width:44px;
  height:44px;
  border-radius:50%;
  color:#061733;
  background:rgba(255,255,255,.96);
  font-size:26px;
  line-height:1;
  font-weight:850;
  box-shadow:0 14px 32px rgba(6,23,51,.18);
}

.service-preview-arrow{
  width:52px;
  height:52px;
  margin:auto;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg, #0b44c8, #159ee7);
  font-size:28px;
  font-weight:900;
  box-shadow:0 16px 34px rgba(0,102,214,.28);
}

.service-preview-close:hover,
.service-preview-arrow:hover{
  transform:translateY(-2px);
}

.service-preview-arrow:focus-visible,
.service-preview-close:focus-visible{
  outline:3px solid rgba(21,158,231,.45);
  outline-offset:3px;
}

@media(max-width:760px){
  .service-preview-modal{
    padding:16px 12px max(112px, calc(16px + env(safe-area-inset-bottom)));
  }

  .service-preview-card{
    max-height:calc(100vh - 138px);
    grid-template-columns:1fr;
    border-radius:16px;
  }

  .service-preview-image{
    height:min(62vh, 500px);
    min-height:240px;
  }

  .service-preview-arrow{
    position:absolute;
    top:50%;
    z-index:2;
    width:46px;
    height:46px;
    margin:0;
    transform:translateY(-50%);
    font-size:24px;
    background:rgba(255,255,255,.96);
    color:#0c54d8;
  }

  .service-preview-prev{
    left:12px;
  }

  .service-preview-next{
    right:12px;
  }

  .service-preview-arrow:hover{
    transform:translateY(calc(-50% - 2px));
  }

  .service-preview-figure figcaption{
    min-height:54px;
    padding:13px 15px;
  }

  .service-preview-title{
    font-size:14px;
  }

  .service-preview-close{
    top:10px;
    right:10px;
    width:40px;
    height:40px;
    font-size:24px;
  }
}

@media(max-width:680px){
  section,
  #about,
  #reviews,
  #contact,
  .process-section{
    padding-top:34px;
    padding-bottom:34px;
  }
}

/* Premium floating navbar */
header.topbar{
  position:absolute !important;
  top:0;
  left:0;
  right:0;
  z-index:1200;
  padding:14px 0 0;
  background:transparent !important;
  border-bottom:0 !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  pointer-events:none;
}

header.topbar .container{
  width:100%;
  max-width:var(--max);
  padding:0 18px;
}

header.topbar .topbar-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:72px;
  padding:10px 12px 10px 14px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(7,25,54,.84), rgba(9,37,77,.54)),
    rgba(255,255,255,.08);
  box-shadow:0 22px 60px rgba(1,11,28,.28), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter:blur(18px) saturate(1.25);
  -webkit-backdrop-filter:blur(18px) saturate(1.25);
  overflow:visible;
  pointer-events:auto;
}

header.topbar .topbar-inner::before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  opacity:.8;
}

header.topbar .brand{
  min-width:210px;
  gap:10px;
}

header.topbar .logo{
  height:52px;
  width:auto;
  padding:6px 10px;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

header.topbar .nav{
  display:flex;
  align-items:center;
  gap:4px;
  padding:6px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.08);
}

header.topbar .nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:40px;
  padding:10px 12px;
  border-radius:14px;
  color:rgba(255,255,255,.9);
  font-size:13.5px;
  font-weight:800;
  letter-spacing:0;
  transition:transform .2s ease, background .2s ease, color .2s ease;
}

header.topbar .nav a img{
  width:16px;
  height:16px;
  object-fit:contain;
  filter:brightness(0) invert(1);
  opacity:.86;
  transition:opacity .2s ease, transform .2s ease;
}

header.topbar .nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.16);
  transform:translateY(-1px);
}

header.topbar .nav a:hover img{
  opacity:1;
  transform:scale(1.06);
}

header.topbar .topbar-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

header.topbar .topbar-actions .btn{
  min-height:48px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  background:linear-gradient(135deg, #1478ff, #20bfd4);
  color:#fff;
  font-size:12.5px;
  font-weight:900;
  letter-spacing:.2px;
  box-shadow:0 16px 34px rgba(0,102,214,.34);
}

header.topbar .topbar-actions .btn:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 40px rgba(0,102,214,.42);
}

header.topbar .hamburger{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:16px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:22px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
}

@media(max-width:1080px){
  header.topbar .brand{
    min-width:auto;
  }

  header.topbar .logo{
    height:48px;
    max-width:190px;
  }

  header.topbar .nav a{
    padding:10px 9px;
    font-size:13px;
  }

  header.topbar .topbar-actions .btn{
    padding:0 14px;
  }
}

@media(max-width:860px){
  header.topbar{
    padding-top:10px;
  }

  header.topbar .topbar-inner{
    min-height:64px;
    border-radius:20px;
    padding:8px 10px;
  }

  header.topbar .logo{
    height:46px;
    max-width:170px;
  }

  header.topbar .nav{
    display:none;
  }

  header.topbar .hamburger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  header.topbar .nav.mobile{
    display:grid;
    position:absolute;
    top:calc(100% + 10px);
    left:10px;
    right:10px;
    z-index:1250;
    gap:6px;
    padding:10px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:20px;
    background:linear-gradient(135deg, rgba(7,25,54,.96), rgba(9,37,77,.92));
    box-shadow:0 24px 60px rgba(1,11,28,.34);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }

  header.topbar .nav.mobile a{
    justify-content:flex-start;
    min-height:46px;
    padding:12px 14px;
    border-radius:14px;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:14px;
  }

  header.topbar .nav.mobile a img{
    filter:brightness(0) invert(1);
    opacity:.9;
  }
}

@media(max-width:520px){
  header.topbar .container{
    padding:0 10px;
  }

  header.topbar .topbar-inner{
    gap:8px;
  }

  header.topbar .logo{
    height:42px;
    max-width:148px;
    padding:5px 8px;
    border-radius:0;
  }

  header.topbar .topbar-actions{
    gap:7px;
  }

  header.topbar .topbar-actions .btn{
    min-height:42px;
    padding:0 10px;
    font-size:10.5px;
    border-radius:13px;
  }

  header.topbar .hamburger{
    width:42px;
    height:42px;
    border-radius:13px;
  }
}
