:root{
  --navy:#0A1F3D;
  --navy-2:#0F2A52;
  --sky:#38BDF8;
  --sky-dim:#1E5E82;
  --amber:#FF7A33;
  --paper:#F4F7FB;
  --paper-2:#FFFFFF;
  --slate:#5B6B82;
  --ink:#0A1220;
  --line:#1B3A63;
  --line-light:#DCE5F0;
  --mono: 'IBM Plex Mono', monospace;
  --display: 'Space Grotesk', sans-serif;
  --body: 'IBM Plex Sans', sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
button{font:inherit; cursor:pointer;}
.wrap{max-width:1120px; margin:0 auto; padding:0 28px;}
.hidden{display:none !important;}

/* ---------- NAV ---------- */
nav{
  position:sticky; top:0; z-index:50;
  background:rgba(10,31,61,0.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
nav .wrap{display:flex; align-items:center; justify-content:space-between; height:68px; flex-wrap:nowrap;}
.brand{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.logo-nav{height:30px; width:auto;}
.logo-footer{height:26px; width:auto; margin-bottom:10px;}
.navlinks{display:flex; gap:18px; font-size:13.5px; color:#B9C6DA; flex-wrap:nowrap;}
.navlinks a{padding:6px 0; border-bottom:2px solid transparent; white-space:nowrap;}
.navlinks a:hover, .navlinks a.active{color:#fff; border-color:var(--sky);}
.navcta{
  background:var(--sky); color:var(--navy); font-weight:600; font-size:14px;
  padding:9px 18px; border-radius:5px; font-family:var(--body); border:none;
  white-space:nowrap; flex-shrink:0;
}
.navcta:hover{background:#5CCBFA;}
.nav-toggle{display:none; background:none; border:1px solid var(--line); color:#fff; padding:8px 10px; border-radius:6px; flex-shrink:0;}
@media(min-width:1101px){ .nav-mobile-only{display:none;} }
@media(max-width:1100px){
  .navlinks{display:none;}
  .navcta{display:none;}
  .nav-toggle{display:block;}
  .navlinks.open{
    display:flex; flex-direction:column; position:absolute; top:68px; left:0; right:0;
    background:var(--navy); padding:16px 28px; gap:4px; border-bottom:1px solid var(--line);
    max-height:calc(100vh - 68px); overflow-y:auto;
  }
  .navlinks.open a{padding:12px 0; border-bottom:1px solid var(--line); white-space:normal;}
}

/* ---------- HERO ---------- */
.hero{
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(56,189,248,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(255,122,51,0.10), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color:#fff; padding:96px 0 84px; position:relative; overflow:hidden; border-bottom:1px solid var(--line);
}
.hero-grid{
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(56,189,248,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(56,189,248,0.055) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(180deg, black, transparent 75%);
  pointer-events:none;
}
.hero-inner{position:relative; z-index:2; display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center;}
@media(max-width:900px){ .hero-inner{grid-template-columns:1fr;} }

.boot{
  font-family:var(--mono); font-size:13px; color:var(--sky);
  background:rgba(0,0,0,0.25); border:1px solid var(--line); border-radius:8px;
  padding:16px 18px; margin-bottom:28px; display:inline-block; min-width:340px;
}
.boot .ln{opacity:0; animation:fadeIn 0.4s forwards;}
.boot .ln:nth-child(1){animation-delay:0.1s;}
.boot .ln:nth-child(2){animation-delay:0.6s;}
.boot .ln:nth-child(3){animation-delay:1.1s;}
.boot .ln:nth-child(4){animation-delay:1.6s; color:var(--amber);}
.boot .ok{color:#4ADE80;}
.cursor{display:inline-block; width:7px; height:13px; background:var(--sky); margin-left:4px; animation:blink 1s step-end infinite; vertical-align:middle;}
@keyframes fadeIn{to{opacity:1;}}
@keyframes blink{50%{opacity:0;}}

.hero h1{font-family:var(--display); font-weight:700; font-size:52px; line-height:1.05; letter-spacing:-0.02em; margin-bottom:22px;}
.hero h1 span{color:var(--sky);}
@media(max-width:560px){ .hero h1{font-size:36px;} }
.hero p.lede{font-size:17px; color:#C3CEE0; max-width:480px; margin-bottom:32px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}

.btn{
  font-family:var(--body); font-weight:600; font-size:15px; padding:13px 24px;
  border-radius:6px; display:inline-flex; align-items:center; gap:8px; border:1px solid transparent;
}
.btn-primary{background:var(--amber); color:#fff;}
.btn-primary:hover{background:#FF8B4D;}
.btn-ghost{border-color:var(--line); color:#fff; background:transparent;}
.btn-ghost:hover{border-color:var(--sky); color:var(--sky);}
.btn-ghost-light{border-color:var(--line-light); color:var(--navy); background:transparent;}
.btn-ghost-light:hover{border-color:var(--sky-dim); color:var(--sky-dim);}
.btn:disabled{opacity:0.6; cursor:not-allowed;}

.panel{background:rgba(255,255,255,0.04); border:1px solid var(--line); border-radius:12px; padding:22px; backdrop-filter:blur(6px);}
.panel-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; font-family:var(--mono); font-size:12px; color:var(--slate);}
.panel-head .live{display:flex; align-items:center; gap:6px; color:#4ADE80;}
.panel-head .live .dot{width:6px; height:6px; border-radius:50%; background:#4ADE80; box-shadow:0 0 6px #4ADE80; animation:blink 1.5s step-end infinite;}
.stat-row{display:flex; justify-content:space-between; padding:11px 0; border-top:1px solid var(--line); font-size:14px; color:#DCE5F0;}
.stat-row:first-of-type{border-top:none;}
.stat-row b{color:#fff; font-family:var(--mono); font-weight:500;}

/* ---------- PAGE HEADER (non-home pages) ---------- */
.page-header{
  background:linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color:#fff; padding:64px 0 56px; border-bottom:1px solid var(--line);
}
.page-header .section-tag{color:var(--sky);}
.page-header h1{font-family:var(--display); font-size:38px; font-weight:700; letter-spacing:-0.01em; margin-bottom:12px;}
.page-header p{color:#B9C6DA; font-size:16px; max-width:600px;}

/* ---------- SECTION HEADS ---------- */
.section{padding:88px 0;}
.section-tag{font-family:var(--mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--sky-dim); margin-bottom:10px; font-weight:500;}
.section h2{font-family:var(--display); font-weight:700; font-size:32px; letter-spacing:-0.01em; color:var(--navy); margin-bottom:14px; max-width:640px;}
.section p.intro{color:var(--slate); font-size:16px; max-width:560px; margin-bottom:48px;}

/* ---------- SERVICES ---------- */
.cat-label{
  font-family:var(--mono); font-size:12px; color:var(--amber); text-transform:uppercase; letter-spacing:0.06em;
  margin:40px 0 16px; display:flex; align-items:center; gap:10px;
}
.cat-label::after{content:''; flex:1; height:1px; background:var(--line-light);}
.cat-label:first-of-type{margin-top:0;}
.svc-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px;}
@media(max-width:860px){ .svc-grid{grid-template-columns:repeat(2, 1fr);} }
@media(max-width:560px){ .svc-grid{grid-template-columns:1fr;} }
.svc-card{
  background:var(--paper-2); border:1px solid var(--line-light); border-radius:10px;
  padding:0; overflow:hidden; transition:border-color 0.15s, transform 0.15s; text-align:left; width:100%;
  /* Buttons default to vertically-centering their content, so once CSS
     Grid stretches a shorter card to match a taller row-mate, the extra
     height shows up as blank space above the image instead of being
     absorbed by the body text below it. Flex-column + a fixed-height,
     non-shrinking media block keeps the image pinned to the top and
     lets the body (whose text length varies) absorb the extra space. */
  display:flex; flex-direction:column; align-items:stretch;
}
.svc-card:hover{border-color:var(--sky); transform:translateY(-2px);}
.svc-card-media{
  background:var(--navy); padding:14px; display:flex; align-items:center; justify-content:center;
  min-height:96px; position:relative; flex-shrink:0;
}
.svc-card-num{
  position:absolute; top:10px; left:10px; font-family:var(--mono); font-size:10.5px; color:#DCE9FA;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.16); padding:3px 8px; border-radius:10px;
}
.svc-card-body{padding:18px 22px 22px;}
.svc-card h3{font-family:var(--display); font-size:16px; font-weight:600; color:var(--navy); margin-bottom:8px;}
.svc-card p{font-size:13.5px; color:var(--slate); margin-bottom:10px;}
.svc-card .from{font-family:var(--mono); font-size:12.5px; color:var(--sky-dim);}
.svc-card .arrow{font-family:var(--mono); font-size:13px; color:var(--amber); margin-top:10px; display:inline-block;}

/* ---------- SERVICE DETAIL MODAL ---------- */
.modal-backdrop{
  position:fixed; inset:0; background:rgba(6,15,30,0.72); backdrop-filter:blur(3px);
  z-index:100; display:flex; align-items:flex-start; justify-content:center;
  padding:40px 20px; overflow-y:auto;
}
.modal{
  background:var(--paper-2); border-radius:16px; max-width:620px; width:100%;
  padding:36px; position:relative; margin-top:20px;
}
.modal.modal-lg{max-width:760px;}
.modal-close{
  position:absolute; top:20px; right:20px; width:34px; height:34px; border-radius:8px;
  border:1px solid var(--line-light); background:var(--paper); color:var(--navy); font-size:16px;
  display:flex; align-items:center; justify-content:center;
}
.modal-close:hover{border-color:var(--sky);}
.modal .cat-pill{
  font-family:var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:0.05em;
  color:var(--amber); background:#FFF1E8; padding:4px 10px; border-radius:20px; display:inline-block; margin-bottom:14px;
}
.modal h2{font-family:var(--display); font-size:26px; color:var(--navy); margin-bottom:8px; padding-right:40px;}
.modal .tagline{color:var(--slate); font-size:14.5px; margin-bottom:18px;}
.modal .desc{font-size:15px; color:var(--ink); line-height:1.65; margin-bottom:26px;}
.modal-table-scroll{width:100%; overflow-x:auto; margin-bottom:26px;}
.modal table{width:100%; table-layout:fixed; border-collapse:collapse;}
.modal table col.col-option{width:26%;}
.modal table col.col-detail{width:42%;}
.modal table col.col-price{width:32%;}
.modal table th{
  text-align:left; font-family:var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:0.04em;
  color:#fff; background:var(--navy); padding:10px 12px; overflow-wrap:break-word;
}
.modal table th:last-child, .modal table td:last-child{text-align:right;}
.modal table td{padding:11px 12px; border-bottom:1px solid var(--line-light); font-size:13.5px; overflow-wrap:break-word; word-break:break-word;}
.modal table td.price{font-family:var(--mono); font-weight:600; color:var(--navy);}
.modal table td.detail{color:var(--slate);}

/* On phones, take the whole screen rather than cramming a fixed-width
   card into a narrow viewport — standard, much more readable mobile
   pattern for a detail view like this. */
@media(max-width:600px){
  /* display:block (not flex) here deliberately — a flex "stretch" item
     whose content overflows its stretched cross-size gets shifted/clamped
     by some mobile browsers instead of just growing downward, leaving a
     gap at the bottom of the screen where the dimmed page behind it (and
     the floating WhatsApp button) shows through. A plain block box with
     min-height:100% always starts flush at the top and grows with its
     content, so there's no gap to leak through regardless of content
     height. */
  .modal-backdrop{padding:0; display:block; overflow-y:auto;}
  .modal{
    max-width:none; width:100%; min-height:100%; margin-top:0;
    border-radius:0; padding:24px 16px 32px;
  }
  .modal h2{font-size:22px;}
  .modal table th{padding:8px 6px; font-size:10px;}
  .modal table td{padding:9px 6px; font-size:12.5px;}
  .modal table col.col-option{width:24%;}
  .modal table col.col-detail{width:42%;}
  .modal table col.col-price{width:34%;}
}

/* ---------- PROCESS ---------- */
.process{background:var(--navy); color:#fff; padding:88px 0;}
.process .section-tag{color:var(--sky);}
.process h2{color:#fff;}
.process p.intro{color:#B9C6DA;}
.steps{display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:20px; position:relative;}
.steps::before{content:''; position:absolute; top:20px; left:0; right:0; height:1px; background:var(--line); z-index:0;}
@media(max-width:800px){ .steps{grid-template-columns:1fr 1fr; row-gap:36px;} .steps::before{display:none;} }
.step{position:relative; z-index:1; padding-right:20px;}
.step .num{
  width:40px; height:40px; border-radius:50%; background:var(--navy); border:1px solid var(--sky);
  color:var(--sky); font-family:var(--mono); font-size:14px; display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
.step h4{font-family:var(--display); font-size:15px; font-weight:600; margin-bottom:6px;}
.step p{font-size:13.5px; color:#9FB0C8;}

/* ---------- TRUST ---------- */
.trust{padding:76px 0; border-top:1px solid var(--line-light); border-bottom:1px solid var(--line-light);}
.trust-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:32px;}
@media(max-width:760px){ .trust-grid{grid-template-columns:1fr;} }
.trust-item h3{font-family:var(--display); font-size:17px; color:var(--navy); margin-bottom:8px;}
.trust-item p{font-size:14px; color:var(--slate);}
.trust-item .mark{font-family:var(--mono); color:var(--amber); font-size:13px; margin-bottom:10px; display:block;}

/* ---------- CLIENTS / CASE STUDIES ---------- */
.case-grid{display:grid; grid-template-columns:repeat(2, 1fr); gap:18px;}
@media(max-width:760px){ .case-grid{grid-template-columns:1fr;} }
.case-card{background:var(--paper-2); border:1px solid var(--line-light); border-radius:12px; padding:26px;}
.case-card .sector{font-family:var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:0.05em; color:var(--sky-dim); margin-bottom:10px;}
.case-card h3{font-family:var(--display); font-size:17px; color:var(--navy); margin-bottom:10px;}
.case-card p{font-size:14px; color:var(--slate); margin-bottom:14px;}
.case-card .service-tag{
  font-size:12px; font-family:var(--mono); color:var(--amber); border:1px solid #FFDCC2; background:#FFF6EF;
  padding:4px 10px; border-radius:20px; display:inline-block;
}
.case-card.note{border-style:dashed; background:var(--paper);}
.case-card.note h3{color:var(--slate);}
.partner-card{border-left:3px solid var(--sky);}
.partner-logo{display:block; max-height:40px; max-width:160px; margin-bottom:14px; object-fit:contain;}
.partner-card h3 a{color:inherit; text-decoration:underline; text-decoration-color:var(--line-light); text-underline-offset:3px;}
.partner-card h3 a:hover{text-decoration-color:var(--sky);}

/* ---------- LIVE SERVICE PREVIEWS (Our Work page) ---------- */
.preview-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin-bottom:8px;}
@media(max-width:860px){ .preview-grid{grid-template-columns:repeat(2, 1fr);} }
@media(max-width:560px){ .preview-grid{grid-template-columns:1fr;} }
.preview-card{
  background:var(--paper-2); border:1px solid var(--line-light); border-radius:10px;
  overflow:hidden; transition:border-color 0.15s, transform 0.2s ease, box-shadow 0.2s ease;
}
.preview-card:hover{border-color:var(--sky); transform:translateY(-2px); box-shadow:0 10px 24px rgba(10,31,61,0.08);}
.preview-mock-wrap{
  background:var(--navy); padding:16px; cursor:pointer; display:flex; align-items:center; justify-content:center;
  min-height:118px; position:relative; overflow:hidden;
}
.preview-mock-hint{
  position:absolute; left:0; right:0; bottom:0; padding:8px 12px 7px; font-family:var(--mono); font-size:10.5px;
  color:#fff; background:linear-gradient(0deg, rgba(10,31,61,0.95), rgba(10,31,61,0)); opacity:0;
  transition:opacity 0.15s; pointer-events:none;
}
.preview-card:hover .preview-mock-hint{opacity:1;}
.preview-body{padding:16px 18px 18px;}
.preview-body h4{font-family:var(--display); font-size:15px; font-weight:600; color:var(--navy); margin-bottom:6px;}
.preview-body p{font-size:12.5px; color:var(--slate); margin-bottom:14px; line-height:1.5;}
.preview-actions{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px;}
.btn-mini{
  font-family:var(--mono); font-size:11.5px; font-weight:600; padding:7px 12px; border-radius:5px;
  border:1px solid var(--line-light); color:var(--navy); background:var(--paper); white-space:nowrap;
}
.btn-mini:hover{border-color:var(--sky);}
.btn-mini-primary{background:var(--sky); border-color:var(--sky); color:var(--navy);}
.btn-mini-primary:hover{background:#5CCBFA;}
.preview-detail-link{
  font-family:var(--mono); font-size:12px; color:var(--amber); background:none; border:none; padding:0;
}
.preview-detail-link:hover{text-decoration:underline;}

/* mockup archetypes — generic tokens shared across preview types */
.mock{width:100%; max-width:220px; font-family:var(--mono);}
.mock-svg-wrap{width:100%; max-width:220px;}
.mock-svg{width:100%; height:auto; display:block;}

.mock-browser{background:#0F2A52; border-radius:8px; padding:0; overflow:hidden;}
.mb-bar{display:flex; align-items:center; gap:4px; padding:8px 10px; background:#0A1F3D;}
.mb-bar span{width:6px; height:6px; border-radius:50%; background:#38BDF8; opacity:0.5;}
.mb-url{flex:1; height:8px; margin-left:8px; background:rgba(255,255,255,0.08); border-radius:4px;}
.mb-hero{height:36px; margin:12px 10px 8px; background:linear-gradient(135deg, #38BDF8, #FF7A33); border-radius:5px; opacity:0.85;}
.mb-line{height:6px; margin:0 10px 6px; background:rgba(255,255,255,0.15); border-radius:3px;}
.mb-line.w1{width:70%;} .mb-line.w2{width:45%;}
.mb-btn{width:60px; height:16px; margin:10px 10px 12px; background:#FF7A33; border-radius:4px;}

.mock-app{display:flex; flex-direction:column; gap:8px;}
.ma-bar{height:10px; width:50%; background:#38BDF8; border-radius:4px; opacity:0.8; margin-bottom:2px;}
.ma-row{display:flex; align-items:center; gap:8px;}
.ma-ic{width:20px; height:20px; border-radius:6px; background:#38BDF8; opacity:0.6; flex-shrink:0;}
.ma-lines{flex:1;}
.ma-line{height:5px; background:rgba(255,255,255,0.18); border-radius:3px; margin-bottom:4px;}
.ma-line.w1{width:90%;} .ma-line.w2{width:60%;}
.ma-nav{display:flex; gap:6px; justify-content:center; margin-top:4px;}
.ma-nav span{width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.25);}
.ma-nav span.on{background:#FF7A33;}

.mock-dash{display:flex; flex-direction:column; gap:10px;}
.md-stats{display:flex; gap:6px;}
.md-stat{flex:1; height:22px; background:rgba(56,189,248,0.18); border:1px solid rgba(56,189,248,0.4); border-radius:5px;}
.md-bars{display:flex; align-items:flex-end; gap:6px; height:44px;}
.md-bars span{flex:1; background:#FF7A33; border-radius:3px 3px 0 0; opacity:0.85;}

.mock-crm{display:flex; gap:8px;}
.mc-col{flex:1; display:flex; flex-direction:column; gap:6px; background:rgba(255,255,255,0.04); border-radius:5px; padding:6px;}
.mc-card{height:16px; background:rgba(56,189,248,0.35); border-radius:4px;}

.mock-term{background:#081527; border-radius:6px; padding:12px; text-align:left;}
.mt-line{height:6px; background:rgba(56,189,248,0.4); border-radius:3px; margin-bottom:7px;}
.mt-line.w1{width:80%;} .mt-line.w2{width:55%;} .mt-line.w3{width:65%;}
.mt-ok{color:#8FE7AC; font-size:11px; margin-top:4px;}

.mock-cam{display:grid; grid-template-columns:1fr 1fr; gap:6px;}
.mcam-tile{
  aspect-ratio:4/3; background:linear-gradient(180deg, rgba(56,189,248,0.15), rgba(10,31,61,0.4));
  border:1px solid rgba(56,189,248,0.3); border-radius:5px; position:relative;
}
.mcam-tile .rec{position:absolute; top:5px; right:5px; width:6px; height:6px; border-radius:50%; background:#FF4D4D;}

.mock-receipt{background:#fff; color:var(--navy); border-radius:4px; padding:14px 14px 10px; text-align:left; box-shadow:0 4px 14px rgba(0,0,0,0.2);}
.mr-line{height:6px; background:var(--line-light); border-radius:3px; margin-bottom:8px;}
.mr-line.w1{width:85%;} .mr-line.w2{width:55%;}
.mr-total{font-size:11px; font-weight:700; color:var(--navy); border-top:1px dashed var(--line-light); padding-top:8px; text-align:right;}

.mock-chat{display:flex; flex-direction:column; gap:8px; align-items:flex-start; text-align:left;}
.mch-bubble{background:#0F2A52; color:#DCE9FA; font-size:10.5px; padding:8px 10px; border-radius:10px 10px 10px 2px; max-width:90%;}
.mch-sent{color:#8FE7AC; font-size:10.5px; margin-top:2px;}

.mock-diag{display:flex; align-items:center; gap:14px; text-align:left;}
.mdg-screen{width:52px; height:52px; border-radius:8px; background:rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.mdg-ring{width:32px; height:32px; border-radius:50%; border:4px solid rgba(56,189,248,0.25); border-top-color:#38BDF8;}
.mdg-checks{display:flex; flex-direction:column; gap:5px; font-size:10.5px; color:#B9C6DA;}

.mock-recov{display:flex; flex-direction:column; align-items:center; gap:10px;}
.mrv-drive{width:40px; height:26px; border:2px solid #38BDF8; border-radius:4px; opacity:0.8;}
.mrv-bar{width:100%; height:6px; background:rgba(255,255,255,0.12); border-radius:3px; overflow:hidden;}
.mrv-bar span{display:block; height:100%; background:#FF7A33;}
.mrv-label{font-size:10.5px; color:#B9C6DA;}

.mock-checklist{display:flex; flex-direction:column; gap:8px; text-align:left; font-size:11px; color:#B9C6DA;}
.mcl-row{position:relative; padding-left:20px;}
.mcl-row::before{content:''; position:absolute; left:0; top:2px; width:12px; height:12px; border-radius:3px; border:1.5px solid rgba(56,189,248,0.5);}
.mcl-row.done{color:#8FE7AC;}
.mcl-row.done::before{background:#38BDF8; border-color:#38BDF8;}

/* ---------- LIVE PREVIEW MODAL (detailed, full-size mockups) ---------- */
.lp-stage{
  background:var(--navy); border-radius:12px; padding:28px; margin-bottom:8px;
  display:flex; align-items:center; justify-content:center; min-height:320px; overflow:hidden;
}
.lp-stage-simple{transform:scale(1.7); display:flex; align-items:center; justify-content:center; padding:30px 0;}
.lp-note{font-size:12px; color:var(--slate); text-align:center; margin:14px 0 20px;}
.lp-modal-actions{display:flex; flex-wrap:wrap; align-items:center; gap:12px;}
.lp-modal-actions .btn{padding:12px 22px;}
.lp-pricing-link{
  font-family:var(--mono); font-size:13px; color:var(--amber); background:none; border:none; padding:0; margin-left:auto;
}
.lp-pricing-link:hover{text-decoration:underline;}
@media(max-width:600px){
  .lp-modal-actions{flex-direction:column; align-items:stretch;}
  .lp-modal-actions .btn{width:100%; justify-content:center;}
  .lp-pricing-link{margin-left:0; text-align:center;}
}

/* -- detailed: website (browser) -- */
.lp-browser{width:100%; max-width:600px; background:#0F2A52; border-radius:10px; overflow:hidden;}
.lpb-chrome{display:flex; align-items:center; gap:5px; padding:10px 14px; background:#0A1F3D;}
.lpb-chrome span{width:7px; height:7px; border-radius:50%; background:#38BDF8; opacity:0.5;}
.lpb-url{flex:1; max-width:200px; margin-left:10px; height:10px; background:rgba(255,255,255,0.08); border-radius:5px; font-size:0;}
.lpb-nav{display:flex; align-items:center; gap:14px; padding:14px 20px; border-bottom:1px solid rgba(255,255,255,0.08);}
.lpb-logo{width:26px; height:14px; background:#38BDF8; border-radius:3px; opacity:0.8;}
.lpb-links{flex:1; display:flex; gap:16px; font-family:var(--mono); font-size:11px; color:#B9C6DA;}
.lpb-cta{font-family:var(--mono); font-size:11px; font-weight:600; color:#0A1F3D; background:#38BDF8; padding:7px 14px; border-radius:5px;}
.lpb-hero{display:flex; align-items:center; gap:24px; padding:28px 24px;}
.lpb-hero-text{flex:1;}
.lpb-h1{height:14px; width:85%; background:#fff; opacity:0.9; border-radius:3px; margin-bottom:10px;}
.lpb-h1.w2{width:60%;}
.lpb-sub{height:8px; width:70%; background:rgba(255,255,255,0.25); border-radius:3px; margin:14px 0 18px;}
.lpb-btns{display:flex; gap:10px;}
.lpb-btns .a{width:88px; height:22px; background:#FF7A33; border-radius:5px; display:inline-block;}
.lpb-btns .b{width:78px; height:22px; border:1px solid rgba(255,255,255,0.3); border-radius:5px; display:inline-block;}
.lpb-hero-art{flex-shrink:0; width:150px; height:100px; border-radius:8px; background:linear-gradient(135deg, #38BDF8, #FF7A33); opacity:0.85;}
.lpb-features{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; padding:0 24px 26px;}
.lpb-feat{background:rgba(255,255,255,0.04); border-radius:8px; padding:14px;}
.lpb-feat .ic{display:block; width:22px; height:22px; border-radius:6px; background:#38BDF8; opacity:0.6; margin-bottom:10px;}
.lpb-feat .lpb-line{height:6px; background:rgba(255,255,255,0.18); border-radius:3px; margin-bottom:6px;}
.lpb-feat .lpb-line.w2{width:65%;}
@media(max-width:640px){ .lpb-hero{flex-direction:column;} .lpb-hero-art{width:100%; height:70px;} .lpb-features{grid-template-columns:1fr;} }

/* -- detailed: web app (phone) -- */
.lp-app{display:flex; justify-content:center; width:100%;}
.lpa-phone{
  width:240px; background:#0F2A52; border-radius:22px; padding:14px; border:6px solid #081527;
  font-family:var(--mono); position:relative;
}
.lpa-status{display:flex; justify-content:flex-end; gap:5px; margin-bottom:10px;}
.lpa-status span{width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,0.3);}
.lpa-topbar{color:#fff; font-size:14px; font-weight:600; margin-bottom:14px; font-family:var(--display);}
.lpa-stats{display:flex; gap:8px; margin-bottom:14px;}
.lpa-stat{flex:1; background:rgba(56,189,248,0.12); border:1px solid rgba(56,189,248,0.3); border-radius:7px; padding:8px 6px; text-align:center;}
.lpa-stat b{display:block; color:#fff; font-size:14px;}
.lpa-stat small{color:#8FA3C2; font-size:9px;}
.lpa-list{display:flex; flex-direction:column; gap:9px; margin-bottom:16px;}
.lpa-row{display:flex; align-items:center; gap:8px;}
.lpa-row .avatar{width:22px; height:22px; border-radius:50%; background:#38BDF8; opacity:0.6; flex-shrink:0;}
.lpa-row .lines{flex:1;}
.lpa-row .l1{height:6px; width:80%; background:rgba(255,255,255,0.35); border-radius:3px; margin-bottom:4px;}
.lpa-row .l2{height:5px; width:55%; background:rgba(255,255,255,0.15); border-radius:3px;}
.lpa-row .tag{font-size:8.5px; padding:3px 7px; border-radius:10px; white-space:nowrap;}
.lpa-row .tag.ok{background:rgba(143,231,172,0.15); color:#8FE7AC;}
.lpa-row .tag.pending{background:rgba(255,122,51,0.15); color:#FF9E63;}
.lpa-fab-row{display:flex; justify-content:flex-end; margin-bottom:10px;}
.lpa-fab{
  width:28px; height:28px; border-radius:50%; background:#FF7A33;
  color:#0A1F3D; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:15px;
}
.lpa-tabbar{display:flex; justify-content:space-around; padding-top:12px; border-top:1px solid rgba(255,255,255,0.08);}
.lpa-tabbar span{width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.25);}
.lpa-tabbar span.on{background:#38BDF8;}

/* -- detailed: CRM board -- */
.lp-crm{width:100%; max-width:620px;}
.lpc-toolbar{display:flex; align-items:center; gap:12px; margin-bottom:16px;}
.lpc-search{flex:1; font-family:var(--mono); font-size:11px; color:#8FA3C2; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:6px; padding:8px 12px;}
.lpc-add{font-family:var(--mono); font-size:11px; font-weight:600; color:#0A1F3D; background:#38BDF8; padding:8px 14px; border-radius:6px; white-space:nowrap;}
.lpc-board{display:flex; gap:14px;}
.lpc-col{flex:1; background:rgba(255,255,255,0.03); border-radius:8px; padding:10px;}
.lpc-col-head{
  font-family:var(--mono); font-size:11px; color:#B9C6DA; margin-bottom:10px; display:flex; justify-content:space-between; align-items:center;
}
.lpc-col-head span{background:rgba(255,255,255,0.1); border-radius:10px; padding:1px 7px; font-size:10px;}
.lpc-card{background:#0F2A52; border-radius:7px; padding:10px; margin-bottom:8px;}
.lpc-card.done{border:1px solid rgba(143,231,172,0.4);}
.lpc-avatar{
  width:22px; height:22px; border-radius:50%; background:#38BDF8; color:#0A1F3D; font-size:9px; font-weight:700;
  display:flex; align-items:center; justify-content:center; margin-bottom:8px; font-family:var(--mono);
}
.lpc-line{height:7px; width:75%; background:rgba(255,255,255,0.25); border-radius:3px; margin-bottom:8px;}
.lpc-amt{font-family:var(--mono); font-size:10px; color:#8FE7AC;}
@media(max-width:640px){ .lpc-board{flex-direction:column;} }

/* -- detailed: POS terminal -- */
.lp-pos{display:flex; gap:16px; width:100%; max-width:660px;}
.lpp-products{flex:1.4;}
.lpp-tabs{display:flex; gap:8px; margin-bottom:12px;}
.lpp-tabs span{font-family:var(--mono); font-size:10.5px; color:#8FA3C2; padding:6px 12px; border-radius:14px; background:rgba(255,255,255,0.05);}
.lpp-tabs span.on{background:#38BDF8; color:#0A1F3D; font-weight:600;}
.lpp-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:8px;}
.lpp-item{
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:8px; padding:10px 8px;
  font-family:var(--mono); font-size:10px; color:#DCE9FA; text-align:center;
}
.lpp-item .ic{display:block; width:20px; height:20px; margin:0 auto 8px; border-radius:5px; background:#FF7A33; opacity:0.7;}
.lpp-item b{display:block; margin-top:5px; color:#8FE7AC; font-size:10.5px;}
.lpp-cart{flex:1; background:#fff; border-radius:8px; padding:14px; color:var(--navy);}
.lpp-cart-row{display:flex; justify-content:space-between; font-size:11px; color:var(--slate); margin-bottom:9px;}
.lpp-total-row{display:flex; justify-content:space-between; font-weight:700; font-size:13px; border-top:1px dashed var(--line-light); padding-top:10px; margin-bottom:14px;}
.lpp-pay{background:#38BDF8; color:var(--navy); text-align:center; font-family:var(--mono); font-weight:700; font-size:11.5px; padding:11px; border-radius:6px;}
@media(max-width:640px){ .lp-pos{flex-direction:column;} }

/* -- detailed: support dashboard -- */
.lp-dash-full{width:100%;}
.lpd-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:18px;}
.lpd-top b{color:#fff; font-family:var(--display); font-size:16px;}
.lpd-status{font-family:var(--mono); font-size:11px; color:#8FE7AC;}
.lpd-stats{display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; margin-bottom:18px;}
.lpd-stat{background:rgba(56,189,248,0.1); border:1px solid rgba(56,189,248,0.25); border-radius:8px; padding:12px 8px; text-align:center;}
.lpd-stat b{display:block; color:#fff; font-size:17px; font-family:var(--display);}
.lpd-stat small{color:#8FA3C2; font-size:10px;}
.lpd-table{background:rgba(255,255,255,0.03); border-radius:8px; overflow:hidden;}
.lpd-row{display:grid; grid-template-columns:1.2fr 1.4fr 1fr; gap:8px; padding:10px 14px; font-size:11.5px; color:#DCE9FA; border-bottom:1px solid rgba(255,255,255,0.06);}
.lpd-row:last-child{border-bottom:none;}
.lpd-row.head{color:#8FA3C2; font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.04em;}
.lpd-row .tag{font-size:9.5px; padding:3px 8px; border-radius:10px; justify-self:start; white-space:nowrap;}
.lpd-row .tag.ok{background:rgba(143,231,172,0.15); color:#8FE7AC;}
.lpd-row .tag.pending{background:rgba(255,122,51,0.15); color:#FF9E63;}
.lpd-row .tag.new{background:rgba(56,189,248,0.15); color:#38BDF8;}
@media(max-width:640px){ .lpd-stats{grid-template-columns:repeat(2, 1fr);} .lpd-row{grid-template-columns:1fr; gap:3px;} }

/* -- detailed: network diagram -- */
.lp-network-svg{width:100%; max-width:640px; height:auto; display:block;}

/* -- detailed: cloud migration -- */
.lp-cloud{display:flex; flex-direction:column; align-items:center; gap:18px; width:100%; max-width:360px;}
.lp-cloud-svg{width:160px; height:auto;}
.lpcl-chips{display:flex; flex-wrap:wrap; gap:8px; justify-content:center;}
.lpcl-chips span{font-family:var(--mono); font-size:10.5px; color:#DCE9FA; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); padding:6px 12px; border-radius:14px;}
.lpcl-progress{width:100%; text-align:center;}
.lpcl-bar{width:100%; height:7px; background:rgba(255,255,255,0.1); border-radius:4px; overflow:hidden; margin-bottom:8px;}
.lpcl-bar span{display:block; height:100%; background:#FF7A33;}
.lpcl-progress small{color:#8FA3C2; font-size:10.5px;}

/* -- detailed: CCTV grid -- */
.lp-cam-full{width:100%; max-width:560px;}
.lpcam-grid-full{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
.lpcam-tile-full{
  aspect-ratio:16/10; border-radius:8px; position:relative; padding:10px;
  background:linear-gradient(180deg, rgba(56,189,248,0.15), rgba(10,31,61,0.5));
  border:1px solid rgba(56,189,248,0.3);
}
.lpcam-tile-full .live{position:absolute; top:10px; left:10px; font-family:var(--mono); font-size:9.5px; color:#FF6B6B;}
.lpcam-tile-full .label{position:absolute; bottom:10px; left:10px; font-family:var(--mono); font-size:10.5px; color:#DCE9FA;}
.lpcam-tile-full .motion{
  position:absolute; top:10px; right:10px; font-family:var(--mono); font-size:9px; color:#0A1F3D; background:#FF7A33;
  padding:2px 7px; border-radius:8px;
}
@media(max-width:480px){ .lpcam-grid-full{grid-template-columns:1fr;} }

/* ---------- FEE ESTIMATE (booking form) ---------- */
.fee-estimate{
  background:rgba(56,189,248,0.08); border:1px solid rgba(56,189,248,0.3); border-radius:8px;
  padding:14px 16px;
}
.fee-title{font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:0.04em; color:var(--sky); margin-bottom:6px;}
.fee-amount{font-family:var(--display); font-size:19px; font-weight:600; color:#fff; margin-bottom:6px;}
.fee-note{font-size:12.5px; color:var(--amber); margin-bottom:6px;}
.fee-disclaimer{font-size:11.5px; color:#9FB0C8;}

/* ---------- PRICING DISCLAIMER BANNER (services page) ---------- */
.pricing-banner{
  background:#FFF6EF; border:1px solid #FFDCC2; border-radius:10px;
  padding:14px 18px; font-size:13.5px; color:var(--ink); line-height:1.5; margin-bottom:32px;
}
.pricing-banner b{color:var(--amber);}

/* ---------- BOOK / QUOTE TABS ---------- */
.tab-switch{display:flex; gap:6px; margin-bottom:28px; background:rgba(255,255,255,0.05); border:1px solid var(--line); border-radius:10px; padding:5px; width:fit-content;}
.tab-btn{
  background:none; border:none; color:#B9C6DA; font-family:var(--body); font-weight:600; font-size:14px;
  padding:10px 20px; border-radius:7px;
}
.tab-btn.active{background:var(--sky); color:var(--navy);}
@media(max-width:480px){ .tab-switch{width:100%;} .tab-btn{flex:1;} }

.quote-services{
  display:flex; flex-direction:column; gap:0; max-height:380px; overflow-y:auto;
  border:1px solid var(--line); border-radius:8px; background:rgba(0,0,0,0.15);
}
.quote-svc-item{border-bottom:1px solid var(--line);}
.quote-svc-item:last-child{border-bottom:none;}
.quote-svc-row{
  display:flex; align-items:center; gap:10px; padding:11px 14px; cursor:pointer;
}
.quote-svc-row:hover{background:rgba(56,189,248,0.06);}
.quote-svc-check{width:16px; height:16px; flex-shrink:0; accent-color:var(--sky);}
.quote-svc-name{flex:1; font-size:13.5px; color:#DCE5F0;}
.quote-svc-price{font-family:var(--mono); font-size:12px; color:var(--sky);}
.quote-svc-tier{padding:0 14px 12px 40px; background:rgba(0,0,0,0.12);}
.quote-svc-tier .tier-label{display:block; font-size:11px; color:#9FB0C8; text-transform:uppercase; letter-spacing:0.04em; margin-bottom:6px;}
.quote-svc-tier select{
  width:100%; background:rgba(0,0,0,0.3); border:1px solid var(--line); border-radius:6px; color:#fff;
  font-family:var(--body); font-size:13px; padding:8px 10px;
}
.quote-svc-tier select option{background:var(--navy); color:#fff;}
.quote-running-total{
  font-size:13px; color:var(--sky); background:rgba(56,189,248,0.08); border:1px solid rgba(56,189,248,0.25);
  border-radius:7px; padding:10px 14px; margin:14px 0;
}

.quote-result-panel{
  margin-top:20px; padding:22px; background:rgba(74,222,128,0.06); border:1px solid rgba(74,222,128,0.3); border-radius:10px;
}
.qr-total{font-family:var(--display); font-size:28px; font-weight:700; color:#fff;}
.qr-estimate-tag{font-size:12px; color:var(--amber); margin-top:4px;}
.qr-expiry{font-size:13px; color:#B9C6DA; margin:4px 0 16px;}
.qr-actions{display:flex; gap:10px; flex-wrap:wrap;}
.qr-actions .btn{font-size:14px; padding:11px 20px;}
.qr-email-status{margin-top:14px; font-size:12.5px;}
.qr-email-status.ok{color:#8FE7AC;}
.qr-email-status.warn{color:#FDBA74;}

/* ---------- FLOATING WHATSAPP WIDGET (custom message popover) ---------- */
.wa-widget{position:fixed; bottom:24px; right:24px; z-index:60; display:flex; flex-direction:column; align-items:flex-end; gap:12px;}
.wa-float{
  width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff; border:none;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,0.25); transition:transform 0.15s, box-shadow 0.15s;
}
.wa-float:hover{transform:scale(1.08); box-shadow:0 6px 20px rgba(0,0,0,0.3);}
@media(max-width:560px){ .wa-widget{bottom:16px; right:16px;} .wa-float{width:50px; height:50px;} }

.wa-popover{
  display:none; width:280px; background:var(--navy); border:1px solid var(--line); border-radius:12px;
  padding:16px; box-shadow:0 10px 30px rgba(0,0,0,0.35);
}
.wa-popover.open{display:block;}
.wa-popover-head{display:flex; justify-content:space-between; align-items:center; color:#fff; font-size:13.5px; font-weight:600; margin-bottom:10px;}
.wa-popover-close{background:none; border:none; color:#9FB0C8; font-size:18px; line-height:1; padding:2px 4px;}
.wa-popover textarea{
  width:100%; background:rgba(0,0,0,0.22); border:1px solid var(--line); border-radius:7px; color:#fff;
  font-family:var(--body); font-size:13.5px; padding:10px 12px; resize:vertical; margin-bottom:10px;
}
.wa-popover textarea::placeholder{color:#7186A3;}
.wa-send-btn{width:100%; justify-content:center; font-size:13.5px; padding:10px; border:none;}
.wa-popover-alt{margin-top:10px; font-size:12px; color:#9FB0C8; text-align:center;}
.wa-popover-alt a{color:var(--sky);}

/* ---------- SOCIAL ICONS (footer) ---------- */
.social-row{display:flex; gap:8px; margin-top:12px;}
.social-icon{
  width:30px; height:30px; border-radius:7px; border:1px solid var(--line); color:#B9C6DA;
  display:flex; align-items:center; justify-content:center;
}
.social-icon:hover{border-color:var(--sky); color:var(--sky);}

/* ---------- SCROLL REVEAL ---------- */
.reveal-target{opacity:0; transform:translateY(28px); transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);}
.reveal-target.reveal-visible{opacity:1; transform:translateY(0);}

/* ---------- PAGE ILLUSTRATIONS (non-home pages) ---------- */
.illustration-caption{text-align:center; max-width:480px; margin:0 auto 18px;}
.illustration-caption p{color:var(--slate); font-size:14px;}
.illustration-wrap{display:flex; justify-content:center; margin:0 0 44px;}
.page-illustration{width:100%; max-width:460px; height:auto;}
@media(max-width:560px){ .page-illustration{max-width:320px;} }
.diag-cell{fill:#0A1F3D; opacity:0.08; animation:diagPulse 3.6s ease-in-out infinite;}
@keyframes diagPulse{
  0%, 100%{fill:#0A1F3D; opacity:0.08;}
  50%{fill:#38BDF8; opacity:0.9;}
}
@media(prefers-reduced-motion: reduce){
  .diag-cell{animation:none;}
}
@media(prefers-reduced-motion: reduce){
  .reveal-target{opacity:1; transform:none; transition:none;}
}

/* ---------- extra polish: card lift + glow on hover ---------- */
.case-card, .partner-admin-card, .breakdown-card{transition:transform 0.2s ease, box-shadow 0.2s ease;}
.case-card:hover{transform:translateY(-3px); box-shadow:0 10px 24px rgba(10,31,61,0.08);}
.svc-card{transition:border-color 0.15s, transform 0.2s ease, box-shadow 0.2s ease;}
.svc-card:hover{box-shadow:0 10px 24px rgba(10,31,61,0.08);}
.btn-primary{transition:background 0.15s, transform 0.15s, box-shadow 0.2s;}
.btn-primary:hover{transform:translateY(-1px); box-shadow:0 6px 18px rgba(255,122,51,0.35);}
.btn-ghost{transition:border-color 0.15s, color 0.15s, transform 0.15s;}
.btn-ghost:hover{transform:translateY(-1px);}
.stat-row, .breakdown-row{transition:background 0.15s;}
.trust-item{transition:transform 0.2s ease;}
.trust-item:hover{transform:translateY(-2px);}

/* ---------- CTA / CONTACT / BOOKING ---------- */
.cta{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color:#fff; padding:90px 0; position:relative; overflow:hidden;
}
.cta::before{
  content:''; position:absolute; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,122,51,0.14), transparent 65%);
  top:-260px; left:50%; transform:translateX(-50%);
}
.cta-inner{position:relative; z-index:2;}
.cta-head{text-align:center; max-width:640px; margin:0 auto 52px;}
.cta-head h2{font-family:var(--display); font-size:34px; font-weight:700; margin-bottom:14px; letter-spacing:-0.01em;}
.cta-head p{color:#B9C6DA; font-size:16px;}

.contact-grid{display:grid; grid-template-columns:1.15fr 0.85fr; gap:24px; align-items:start;}
@media(max-width:860px){ .contact-grid{grid-template-columns:1fr;} }

.quote-card{background:rgba(255,255,255,0.05); border:1px solid var(--line); border-radius:14px; padding:32px; backdrop-filter:blur(6px);}
.quote-card h3{font-family:var(--display); font-size:19px; font-weight:600; margin-bottom:6px;}
.quote-card > p.hint{font-size:14px; color:#9FB0C8; margin-bottom:24px;}
.field{margin-bottom:16px;}
.field label{display:block; font-size:13px; color:#B9C6DA; margin-bottom:7px;}
.field input, .field select, .field textarea{
  width:100%; background:rgba(0,0,0,0.22); border:1px solid var(--line); border-radius:7px;
  padding:12px 14px; color:#fff; font-family:var(--body); font-size:14.5px; outline:none;
}
.field input::placeholder, .field textarea::placeholder{color:#7186A3;}
.field input:focus, .field select:focus, .field textarea:focus{border-color:var(--sky);}
.field select option{background:var(--navy); color:#fff;}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
@media(max-width:520px){ .field-row{grid-template-columns:1fr;} }
.quote-submit{width:100%; justify-content:center; margin-top:6px; font-size:15px; padding:14px; border:none;}
.quote-note{font-size:12.5px; color:#7186A3; margin-top:12px; text-align:center;}
.form-msg{margin-top:14px; padding:12px 14px; border-radius:7px; font-size:13.5px; display:none;}
.form-msg.show{display:block;}
.form-msg.success{background:rgba(74,222,128,0.12); border:1px solid rgba(74,222,128,0.35); color:#8FE7AC;}
.form-msg.error{background:rgba(248,113,113,0.12); border:1px solid rgba(248,113,113,0.35); color:#FCA5A5;}

.contact-card{background:rgba(255,255,255,0.05); border:1px solid var(--line); border-radius:14px; padding:28px;}
.contact-card h3{font-family:var(--display); font-size:16px; font-weight:600; margin-bottom:18px; color:#fff;}
.contact-line{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:13px 0; border-top:1px solid var(--line);}
.contact-line:first-of-type{border-top:none;}
.contact-line .lbl{font-size:12.5px; color:#9FB0C8; text-transform:uppercase; letter-spacing:0.04em; font-family:var(--mono);}
.contact-line .num{font-size:15.5px; color:#fff; font-weight:600;}
.contact-actions{display:flex; gap:8px;}
.icon-btn{width:36px; height:36px; border-radius:7px; display:flex; align-items:center; justify-content:center; border:1px solid var(--line); color:#DCE5F0; font-size:15px; flex-shrink:0;}
.icon-btn.wa:hover{background:#25D366; border-color:#25D366; color:#fff;}
.icon-btn.call:hover{background:var(--sky); border-color:var(--sky); color:var(--navy);}
.contact-meta{margin-top:20px; padding-top:18px; border-top:1px solid var(--line); font-size:13.5px; color:#9FB0C8; line-height:1.8;}

footer{background:var(--navy); color:#8296B4; padding:40px 0; font-size:13px; border-top:1px solid var(--line);}
footer .wrap{display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:20px;}
footer .foot-contact{text-align:right; font-size:13px; line-height:1.9;}
footer .foot-contact a:hover{color:var(--sky);}
@media(max-width:560px){ footer .wrap{flex-direction:column;} footer .foot-contact{text-align:left;} }

/* honeypot field — hidden from real users, catches bots */
.hp-field{position:absolute; left:-9999px; top:-9999px; opacity:0; height:0; width:0;}

/* ---------- LOADING / EMPTY STATES ---------- */
.loading-row{color:var(--slate); font-size:14px; padding:20px 0;}

/* ---------- ADMIN ---------- */
.admin-wrap{max-width:1000px; margin:0 auto; padding:40px 24px;}
.admin-table{width:100%; border-collapse:collapse; background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 1px 3px rgba(0,0,0,0.08); margin-bottom:40px;}
.admin-table th{background:var(--navy); color:#fff; text-align:left; padding:10px 12px; font-size:12.5px; font-family:var(--mono);}
.admin-table td{padding:10px 12px; border-bottom:1px solid var(--line-light); font-size:13.5px; vertical-align:top;}
.admin-status{padding:4px 10px; border-radius:20px; font-size:11.5px; font-family:var(--mono); text-transform:uppercase;}
.admin-status.new{background:#FFF1E8; color:var(--amber);}
.admin-status.contacted{background:#E8F3FC; color:var(--sky-dim);}
.admin-status.done{background:#E7F9EE; color:#1E8E4F;}
.admin-status-select{font-size:12.5px; padding:4px 6px; border-radius:5px; border:1px solid var(--line-light);}
