:root {
    --primary:       #4B2E2B;   /* Deep Brown */
    --primary-light: #6F4E37;   /* Coffee */
    --accent:        #C19A6B;   /* Caramel */
    --accent-light:  #E6C9A8;   /* Soft Tan */
    --bg:            #FDF8F3;   /* Cream */
    --surface:       #FFFFFF;
    --surface2:      #F4ECE6;   /* Warm surface */
    --text:          #2B1B17;   /* Dark Brown text */
    --text-sec:      #7A5C50;   /* Secondary */
    --border:        rgba(75, 46, 43, 0.15);

    --gradient:      linear-gradient(135deg, #4B2E2B 0%, #C19A6B 100%);
    --gradient-soft: linear-gradient(135deg, #F4ECE6 0%, #FFF7ED 100%);

    --shadow:        0 4px 24px rgba(75,46,43,0.12);
    --shadow-lg:     0 12px 48px rgba(75,46,43,0.18);

    --radius:        16px;
    --radius-sm:     10px;
}
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }

  /* =========== NAVBAR =========== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.93); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem; display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; text-decoration: none; }
  .nav-logo .l1 { color: var(--primary); }
  .nav-logo .l2 { color: var(--accent); }
  .nav-links { display: flex; align-items: center; gap: 0.15rem; }
  .nav-links a {
    padding: 0.5rem 0.9rem; border-radius: 8px; text-decoration: none;
    color: var(--text-sec); font-size: 0.875rem; font-weight: 500;
    transition: all 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { background: var(--surface2); color: var(--primary); }
  .btn-nav {
    background: var(--gradient); color: white; border: none;
    padding: 0.55rem 1.35rem; border-radius: 50px; font-size: 0.875rem;
    font-weight: 600; cursor: pointer; transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(233,30,140,0.28); font-family: inherit;
    text-decoration: none; display: inline-block;
  }
  .btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(233,30,140,0.38); }

  /* =========== HERO =========== */
  .hero {
    min-height: 100vh; padding: 90px 2rem 60px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-soft); position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(108,63,197,0.07) 0%, transparent 70%);
    top: -200px; right: -150px; pointer-events: none;
  }
  .hero-inner {
    max-width: 1180px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; position: relative; z-index: 1;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(108,63,197,0.08); border: 1px solid rgba(108,63,197,0.2);
    color: var(--primary); padding: 0.35rem 1rem; border-radius: 50px;
    font-size: 0.78rem; font-weight: 600; margin-bottom: 1.4rem; width: fit-content;
  }
  .hero-badge .dot {
    width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
    animation: blink 2s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
  
  .hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; line-height: 1.15; font-weight: 800; margin-bottom: 1.2rem; }
  .hero h1 .hp { color: var(--accent); }
  .hero h1 .hb { color: var(--primary); }
  .hero p { font-size: 0.975rem; color: var(--text-sec); line-height: 1.75; margin-bottom: 2rem; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gradient); color: white; border: none;
    padding: 0.8rem 1.8rem; border-radius: 50px; font-size: 0.95rem;
    font-weight: 600; cursor: pointer; transition: all 0.25s;
    box-shadow: 0 6px 18px rgba(233,30,140,0.28); font-family: inherit;
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(233,30,140,0.38); }
  .btn-outline {
    background: transparent; color: var(--primary); border: 2px solid var(--primary);
    padding: 0.77rem 1.8rem; border-radius: 50px; font-size: 0.95rem;
    font-weight: 600; cursor: pointer; transition: all 0.25s; font-family: inherit;
    text-decoration: none; display: inline-flex; align-items: center;
  }
  .btn-outline:hover { background: var(--primary); color: white; }
  .hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; }
  .hs-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); }
  .hs-num em { color: var(--accent); font-style: normal; }
  .hs-lbl { font-size: 0.78rem; color: var(--text-sec); margin-top: 0.1rem; }

  /* Hero Visual Card */
  .hero-visual { position: relative; }
  .hv-card {
    background: white; border-radius: 22px; padding: 1.75rem;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  }
  .hv-tag {
    background: var(--gradient); color: white; font-size: 0.72rem;
    font-weight: 700; padding: 0.3rem 0.85rem; border-radius: 50px;
    display: inline-block; margin-bottom: 0.9rem;
  }
  .hv-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 0.2rem; }
  .hv-sub { font-size: 0.78rem; color: var(--text-sec); margin-bottom: 1rem; }
  .att-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.6rem 0; border-bottom: 1px solid rgba(108,63,197,0.07); font-size: 0.83rem;
  }
  .att-row:last-of-type { border-bottom: none; }
  .pill { display: inline-block; padding: 2px 11px; border-radius: 50px; font-size: 0.73rem; font-weight: 700; }
  .pill-g { background: #E8F5E9; color: #2E7D32; }
  .pill-o { background: #FFF3E0; color: #E65100; }
  .pill-r { background: #FFEBEE; color: #C62828; }
  .pill-b { background: #E3F2FD; color: #1565C0; }
  .mini-float {
    background: white; border-radius: 14px; padding: 0.85rem 1.1rem;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    position: absolute; display: flex; align-items: center; gap: 0.7rem;
  }
  .mf-1 { top: -18px; right: -18px; }
  .mf-2 { bottom: -18px; left: -18px; }
  .mf-icon {
    width: 38px; height: 38px; border-radius: 10px; display: flex;
    align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
  }
  .mf-t { font-weight: 700; font-size: 0.82rem; }
  .mf-s { font-size: 0.72rem; color: var(--text-sec); }

  /* =========== SECTIONS =========== */
  .section { padding: 5rem 2rem; max-width: 1180px; margin: 0 auto; }
  .s-label {
    font-size: 0.76rem; font-weight: 700; color: var(--accent);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.6rem;
  }
  .s-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.3rem; font-weight: 800; line-height: 1.2; margin-bottom: 0.9rem; }
  .s-title .hl { color: var(--accent); }
  .s-sub { color: var(--text-sec); font-size: 0.975rem; line-height: 1.72; max-width: 540px; margin: 0 auto 2.8rem; }

  /* Feature Cards */
  .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.35rem; }
  .feat-card {
    background: white; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.7rem; transition: all 0.3s; position: relative; overflow: hidden;
  }
  .feat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gradient);
  }
  .feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .fc-icon {
    width: 46px; height: 46px; border-radius: 12px; background: var(--surface2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 1.1rem;
  }
  .fc-title { font-weight: 700; font-size: 0.975rem; margin-bottom: 0.45rem; }
  .fc-desc { font-size: 0.855rem; color: var(--text-sec); line-height: 1.65; }

  /* Stats Banner */
  .stats-banner {
    background: var(--gradient); padding: 4rem 2rem; color: white; text-align: center;
  }
  .stats-inner {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  }
  .stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 800; }
  .stat-lbl { opacity: 0.82; font-size: 0.875rem; margin-top: 0.3rem; }

  /* Info Cards */
  .info-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .ic-top { background: var(--gradient-soft); padding: 1.2rem 1.45rem; border-bottom: 1px solid var(--border); }
  .ic-badge { font-size: 0.7rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
  .ic-top h3 { font-weight: 700; font-size: 0.93rem; margin-top: 0.3rem; color: var(--text); }
  .ic-body { padding: 1.2rem 1.45rem; font-size: 0.855rem; color: var(--text-sec); line-height: 1.7; }
  .ic-foot {
    padding: 0.9rem 1.45rem; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.76rem; color: var(--text-sec);
  }
  .btn-sm {
    padding: 0.32rem 0.85rem; border-radius: 50px; font-size: 0.75rem;
    font-weight: 600; cursor: pointer; border: none; transition: all 0.2s;
    font-family: inherit; text-decoration: none; display: inline-block;
  }
  .bsp { background: var(--primary); color: white; }
  .bsp:hover { background: var(--primary-light); }
  .bso { background: transparent; border: 1px solid var(--border); color: var(--text-sec); }
  .bso:hover { border-color: var(--primary); color: var(--primary); }

  /* Contact */
  .ki {
    display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.9rem;
    background: white; border: 1px solid var(--border); border-radius: var(--radius-sm);
    margin-bottom: 0.7rem;
  }
  .ki-icon {
    width: 38px; height: 38px; background: var(--surface2); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  }
  .ki-lbl { font-size: 0.75rem; color: var(--text-sec); }
  .ki-val { font-weight: 600; font-size: 0.875rem; color: var(--text); }
  .form-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
  .form-card-hdr { background: var(--gradient); color: white; padding: 1.6rem 1.9rem; }
  .form-card-hdr h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.35rem; font-weight: 800; }
  .form-card-hdr p { font-size: 0.845rem; opacity: 0.85; margin-top: 0.2rem; }
  .form-card-body { padding: 1.9rem; }
  .fg { margin-bottom: 1.2rem; }
  .fg label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text); margin-bottom: 0.45rem; }
  .fg input, .fg select, .fg textarea {
    width: 100%; padding: 0.78rem 1rem; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.875rem; font-family: inherit;
    background: var(--bg); color: var(--text); transition: all 0.2s; outline: none;
  }
  .fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,63,197,0.1); background: white;
  }
  .fg textarea { resize: vertical; min-height: 90px; }
  .btn-block {
    width: 100%; padding: 0.88rem; background: var(--gradient); color: white;
    border: none; border-radius: 50px; font-size: 0.975rem; font-weight: 700;
    cursor: pointer; transition: all 0.25s; box-shadow: 0 6px 18px rgba(233,30,140,0.28);
    font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }
  .btn-block:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(233,30,140,0.38); }

  /* Footer */
  footer { background: var(--text); color: rgba(255,255,255,0.68); padding: 3rem 2rem; }
  .fi { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
  .fl { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.45rem; font-weight: 800; color: white; margin-bottom: 0.7rem; }
  .fl em { color: var(--accent-light); font-style: normal; }
  .fd { font-size: 0.855rem; line-height: 1.72; }
  .fc h4 { font-size: 0.82rem; font-weight: 700; color: white; margin-bottom: 0.9rem; }
  .fc ul { list-style: none; }
  .fc ul li { margin-bottom: 0.45rem; }
  .fc ul li a { color: rgba(255,255,255,0.58); font-size: 0.855rem; text-decoration: none; transition: color 0.2s; }
  .fc ul li a:hover { color: white; }
  .fb {
    max-width: 1180px; margin: 1.8rem auto 0;
    padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center; font-size: 0.78rem;
  }

  /* Responsive */
  @media(max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr !important; }
    .nav-links { display: none; }
    .fi { grid-template-columns: 1fr; gap: 1.5rem; }
  }
  @media(max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .s-title { font-size: 1.7rem; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    nav { padding: 0 1rem; }
  }

html {
    scroll-behavior: smooth;
}

section, div[id] {
  scroll-margin-top: 100px;
}