:root{
    --sky-top:#EAF6FD;
    --sky-mid:#BEE4F7;
    --sky:#4CB1E8;
    --sky-deep:#0E76B5;
    --navy:#0A2E47;
    --navy-soft:#123A57;
    --sun:#F6A93B;
    --sun-deep:#E68A1C;
    --white:#FFFFFF;
    --paper:#F7FBFD;
    --text:#18242E;
    --text-soft:#4C5C68;
    --line: rgba(10,46,71,0.10);
    --shadow: 0 24px 60px -28px rgba(10,46,71,0.35);
    --radius: 14px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    background:var(--paper);
    color:var(--text);
    line-height:1.6;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{font-family:'Sora', sans-serif; color:var(--navy); font-weight:700; letter-spacing:-0.01em;}
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  ul{list-style:none;}
  .wrap{max-width:1200px; margin:0 auto; padding:0 32px;}
  .eyebrow{
    font-size:12px; text-transform:uppercase; letter-spacing:0.14em;
    color:var(--sky-deep); font-weight:700; display:flex; align-items:center; gap:10px;
  }
  .eyebrow::before{content:''; width:22px; height:2px; background:var(--sun);}
  .eyebrow.on-dark{color:#8FD3F5;}
  .eyebrow.on-dark::before{background:var(--sun);}

  /* ===== Header ===== */
  header{
    position:sticky; top:0; z-index:200;
    background:rgba(255,255,255,0.9); backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .topbar{
    background:var(--navy); color:#CFE9F7; font-size:12.5px;
    padding:7px 0;
  }
  .topbar .wrap{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:6px;}
  .topbar-links{display:flex; gap:20px;}
  .topbar-links span{opacity:0.85;}
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 32px; max-width:1200px; margin:0 auto;
  }
  .logo{display:flex; align-items:center; gap:10px; font-family:'Sora',sans-serif; font-weight:800; font-size:19px; color:var(--navy);}
  .logo svg{width:34px; height:34px;}
  .nav-links{display:flex; gap:26px; align-items:center; font-size:14.5px; font-weight:600;}
  .nav-links > li{position:relative;}
  .nav-links a{color:var(--text-soft); padding:6px 0; display:flex; align-items:center; gap:5px;}
  .nav-links > li:hover > a{color:var(--sky-deep);}
  .nav-links svg.chev{width:11px; height:11px;}
  .dropdown{
    position:absolute; top:100%; left:0; background:var(--white); border:1px solid var(--line);
    border-radius:10px; box-shadow:var(--shadow); min-width:220px; padding:8px;
    opacity:0; visibility:hidden; transform:translateY(6px); transition:all .2s ease;
  }
  .nav-links > li:hover .dropdown{opacity:1; visibility:visible; transform:translateY(0);}
  .dropdown a{padding:10px 12px; border-radius:6px; font-weight:500; color:var(--text);}
  .dropdown a:hover{background:var(--sky-top); color:var(--sky-deep);}
  .nav-cta{
    background:var(--sun); color:var(--navy); padding:11px 22px;
    border-radius:8px; font-size:13.5px; font-weight:700; letter-spacing:0.01em;
    transition:background .25s ease, transform .2s ease;
  }
  .nav-cta:hover{background:var(--sun-deep); transform:translateY(-2px);}
  .menu-btn{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;}
  .menu-btn span{width:22px; height:2px; background:var(--navy);}

  /* ===== Hero ===== */
  .hero{
    position:relative; padding:70px 0 0; overflow:hidden;
    background:linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 55%, var(--sky) 100%);
  }
  .hero-content{max-width:1200px; margin:0 auto; padding:30px 32px 0; position:relative; z-index:2;}
  .hero-content{display:grid; grid-template-columns:1.1fr 0.9fr; gap:20px; align-items:center;}
  .hero h1{
    font-size:clamp(36px, 5vw, 60px); line-height:1.04; margin:16px 0 20px;
  }
  .hero h1 span{color:var(--sky-deep);}
  .hero p.lede{font-size:16.5px; color:var(--text-soft); max-width:460px; margin-bottom:30px;}
  .hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:14px;}
  .btn-primary{
    background:var(--sky-deep); color:var(--white); padding:15px 26px; border-radius:8px;
    font-weight:700; font-size:14.5px; display:inline-flex; align-items:center; gap:10px;
    box-shadow:0 16px 30px -14px rgba(14,118,181,0.55); transition:transform .25s ease, background .25s ease;
  }
  .btn-primary:hover{background:var(--navy); transform:translateY(-2px);}
  .btn-outline{
    border:1.5px solid var(--navy); color:var(--navy); padding:13.5px 26px; border-radius:8px;
    font-weight:700; font-size:14.5px; transition:all .25s ease; background:rgba(255,255,255,0.5);
  }
  .btn-outline:hover{background:var(--navy); color:var(--white);}

  .hero-badge-img{
    position:relative; background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow);
    padding:14px; overflow:hidden; aspect-ratio:4/5;
  }
  .hero-badge-img .photo-area{
    position:relative; width:100%; height:100%; border-radius:9px; overflow:hidden;
    background:linear-gradient(160deg,#DCEFFB,#8FD3F5);
  }
  .badge-promo{
    position:absolute; top:14px; left:14px; background:var(--sun); color:var(--navy);
    font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:0.05em;
    padding:7px 12px; border-radius:20px; z-index:3;
  }
  .badge-note{
    position:absolute; bottom:14px; left:14px; right:14px; background:rgba(10,46,71,0.85);
    color:#fff; font-size:11.5px; padding:10px 14px; border-radius:8px; z-index:3;
    display:flex; align-items:center; gap:8px;
  }

  /* search bar */
  .search-panel{
    position:relative; z-index:3; max-width:1200px; margin:38px auto 0; padding:0 32px;
  }
  .search-box{
    background:var(--white); border-radius:16px; box-shadow:var(--shadow);
    padding:20px; display:grid; grid-template-columns:1.3fr 1fr 1fr auto; gap:14px; align-items:end;
  }
  .search-field label{font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:var(--text-soft); display:block; margin-bottom:8px;}
  .search-field select, .search-field input{
    width:100%; border:1px solid var(--line); border-radius:8px; padding:12px 14px;
    font-family:'Inter',sans-serif; font-size:14px; background:var(--paper); color:var(--text);
  }
  .search-btn{
    background:var(--sky-deep); color:#fff; border:none; padding:13px 26px; border-radius:8px;
    font-weight:700; font-size:14px; cursor:pointer; white-space:nowrap; display:flex; align-items:center; gap:8px;
    transition:background .2s ease;
  }
  .search-btn:hover{background:var(--navy);}

  /* palm silhouette skyline */
  .palm-line{position:relative; width:100%; height:170px; margin-top:40px; z-index:1;}
  .palm-line svg{position:absolute; bottom:0; left:0; width:100%; height:100%;}

  /* ===== stats strip ===== */
  .stats-strip{background:var(--navy); padding:26px 0;}
  .stats-strip .wrap{display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px;}
  .stat{color:#fff; text-align:left;}
  .stat b{font-family:'Sora',sans-serif; font-size:28px; display:block; color:#fff;}
  .stat span{font-size:12px; color:#9FCBE6; text-transform:uppercase; letter-spacing:0.06em;}

  section{padding:96px 0;}
  .section-head{max-width:640px; margin-bottom:50px; display:flex; justify-content:space-between; align-items:flex-end; gap:20px; flex-wrap:wrap;}
  .section-head h2{font-size:clamp(26px,3.2vw,38px); margin-top:12px; line-height:1.1;}
  .section-head p.sub{color:var(--text-soft); margin-top:12px; max-width:460px; font-size:15px;}

  /* ===== Clusters (Perumahan) ===== */
  .clusters-grid{display:grid; grid-template-columns:1fr 1fr; gap:26px;}
  .cluster-card{
    border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--white);
    transition:box-shadow .3s ease, transform .3s ease;
  }
  .cluster-card:hover{box-shadow:var(--shadow); transform:translateY(-4px);}
  .cluster-media{
    aspect-ratio:16/10; position:relative;
    background:linear-gradient(160deg,#DCEFFB,#8FD3F5);
  }
  .cluster-media .palm-deco{position:absolute; inset:0; opacity:0.5;}
  .cluster-tag{
    position:absolute; top:16px; left:16px; z-index:2; background:var(--white); font-size:11px; letter-spacing:0.06em;
    text-transform:uppercase; font-weight:800; padding:6px 12px; color:var(--sky-deep); border-radius:20px;
  }
  .cluster-body{padding:26px;}
  .cluster-body .eyebrow{margin-bottom:8px;}
  .cluster-body h3{font-size:21px; margin-bottom:10px;}
  .cluster-meta{display:flex; gap:14px; margin-bottom:14px; font-size:12.5px; color:var(--text-soft); flex-wrap:wrap;}
  .cluster-meta span{display:flex; align-items:center; gap:5px;}
  .cluster-body p{font-size:14px; color:var(--text-soft); margin-bottom:18px;}
  .cluster-actions{display:flex; gap:10px; flex-wrap:wrap;}
  .chip-btn{
    font-size:13px; font-weight:700; padding:9px 16px; border-radius:8px; display:inline-flex; align-items:center; gap:6px;
  }
  .chip-btn.solid{background:var(--sky-deep); color:#fff;}
  .chip-btn.solid:hover{background:var(--navy);}
  .chip-btn.ghost{border:1px solid var(--line); color:var(--navy);}
  .chip-btn.ghost:hover{border-color:var(--sky-deep); color:var(--sky-deep);}

  /* ===== About / smart living ===== */
  .about{background:var(--white);}
  .about-grid{display:grid; grid-template-columns:0.95fr 1.05fr; gap:60px; align-items:center;}
  .about-visual{position:relative; aspect-ratio:1/1; border-radius:var(--radius); overflow:hidden; background:linear-gradient(160deg,#0E76B5,#0A2E47);}
  .about-visual svg{position:absolute; inset:0; width:100%; height:100%;}
  .about p{color:var(--text-soft); font-size:15.5px; max-width:480px; margin-bottom:16px;}
  .pillars{display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:26px;}
  .pillar{border:1px solid var(--line); border-radius:12px; padding:20px;}
  .pillar svg{width:26px; height:26px; color:var(--sky-deep); margin-bottom:12px;}
  .pillar h4{font-size:15px; margin-bottom:6px; font-weight:700;}
  .pillar p{font-size:13px; color:var(--text-soft); margin:0;}

  /* ===== Testimoni preview ===== */
  .testimoni{background:linear-gradient(180deg, var(--paper), var(--sky-top));}
  .testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .testi-card{background:var(--white); border-radius:var(--radius); padding:26px; border:1px solid var(--line); box-shadow:0 14px 30px -22px rgba(10,46,71,0.25);}
  .testi-stars{display:flex; gap:3px; margin-bottom:14px; color:var(--sun);}
  .testi-stars svg{width:16px; height:16px;}
  .testi-card p{font-size:14px; color:var(--text-soft); margin-bottom:18px;}
  .testi-person{display:flex; align-items:center; gap:12px;}
  .testi-avatar{width:38px; height:38px; border-radius:50%; background:linear-gradient(160deg,var(--sky),var(--sky-deep));}
  .testi-person b{font-size:13.5px; display:block;}
  .testi-person span{font-size:12px; color:var(--text-soft);}

  /* ===== Blog & Karir preview ===== */
  .split-preview{display:grid; grid-template-columns:1fr 1fr; gap:30px;}
  .preview-card{background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:30px; position:relative; overflow:hidden;}
  .preview-card h3{font-size:20px; margin:14px 0 10px;}
  .preview-card p{color:var(--text-soft); font-size:14px; margin-bottom:18px;}
  .blog-tags{display:flex; gap:8px; margin-top:16px; flex-wrap:wrap;}
  .blog-tag{font-size:11.5px; background:var(--sky-top); color:var(--sky-deep); padding:6px 12px; border-radius:20px; font-weight:700;}
  .karir-list{display:grid; gap:10px; margin-top:16px;}
  .karir-item{display:flex; justify-content:space-between; align-items:center; border:1px solid var(--line); border-radius:8px; padding:12px 16px; font-size:13.5px;}
  .karir-item b{font-weight:700;}
  .karir-item span.div-tag{font-size:11px; color:var(--sky-deep); background:var(--sky-top); padding:4px 10px; border-radius:20px; font-weight:700;}

  /* ===== CTA banner ===== */
  .cta-banner{
    background:linear-gradient(120deg, var(--navy), var(--sky-deep));
    border-radius:24px; padding:56px; display:flex; justify-content:space-between; align-items:center;
    gap:30px; flex-wrap:wrap; position:relative; overflow:hidden; margin:0 32px;
    max-width:1136px; margin-left:auto; margin-right:auto;
  }
  .cta-banner h2{color:#fff; font-size:clamp(24px,3vw,32px); max-width:480px;}
  .cta-banner p{color:#BFE1F3; margin-top:10px; max-width:420px; font-size:14.5px;}
  .cta-banner .btn-primary{background:var(--sun); color:var(--navy);}
  .cta-banner .btn-primary:hover{background:#fff;}

  /* ===== Footer ===== */
  footer{background:var(--navy); color:#9FCBE6; padding:60px 0 26px; margin-top:96px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:36px; border-bottom:1px solid rgba(159,203,230,0.18); margin-bottom:22px;}
  .footer-logo{font-family:'Sora',sans-serif; font-size:19px; color:#fff; font-weight:800; margin-bottom:12px; display:flex; align-items:center; gap:8px;}
  .footer-grid p{font-size:13.5px; max-width:280px; margin-bottom:16px;}
  .footer-col h4{color:#fff; font-size:13.5px; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:16px;}
  .footer-col ul li{margin-bottom:10px; font-size:13.5px;}
  .footer-col a:hover{color:#fff;}
  .socials{display:flex; gap:12px; margin-top:16px;}
  .socials a{
    width:36px; height:36px; border:1px solid rgba(159,203,230,0.3); border-radius:50%;
    display:flex; align-items:center; justify-content:center; transition:all .2s ease;
  }
  .socials a:hover{background:var(--sun); border-color:var(--sun);}
  .socials svg{width:15px; height:15px;}
  .footer-bottom{display:flex; justify-content:space-between; font-size:12px; flex-wrap:wrap; gap:10px;}

  .wa-float{
    position:fixed; bottom:26px; right:26px; z-index:300;
    width:58px; height:58px; border-radius:50%; background:#25D366;
    display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow);
    animation:pulse 2.6s infinite;
  }
  .wa-float svg{width:26px; height:26px;}
  @keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,0.45);}
    70%{box-shadow:0 0 0 14px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
  }

  .admin-note{
    position:fixed; top:90px; left:14px; z-index:150; max-width:210px;
    background:#fff; border:1px dashed var(--sun-deep); border-radius:10px; padding:12px 14px;
    font-size:11.5px; color:var(--navy); box-shadow:var(--shadow); display:none;
  }
  .admin-note.show{display:block;}
  .admin-note b{color:var(--sun-deep);}

  @media (max-width: 980px){
    .nav-links{display:none;}
    .menu-btn{display:flex;}
    .hero-content, .about-grid, .split-preview{grid-template-columns:1fr;}
    .clusters-grid, .testi-grid{grid-template-columns:1fr;}
    .search-box{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .cta-banner{padding:36px 24px;}
    section{padding:64px 0;}
    .pillars{grid-template-columns:1fr;}
    .admin-note{display:none !important;}
  }

/* tambahan kecil untuk halaman dalam (Fase 3) */
.active{color:var(--sky-deep) !important;}
