    /* =========================================
       GOOGLE FONT
    ========================================== */
    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

    /* =========================================
       ROOT COLORS / WEBSITE THEME
    ========================================== */
    :root{
      --bg: #f5f5f7;
      --hero-bg: #f3eee8;
      --text: #1f2b44;
      --text-dark: #1e2940;
      --muted: #646b7c;
      --muted-2: #8f97a7;
      --line: #e6e0da;
      --line-2: #e7e7ec;
      --white: #ffffff;
      --purple: #8f6df8;
      --purple-dark: #7d5bef;
      --purple-soft: #efe7ff;
      --teal: #65d5c4;
      --shadow: 0 18px 50px rgba(31, 43, 68, 0.08);
      --shadow-soft: 0 12px 30px rgba(31, 43, 68, 0.08);
      --radius-xl: 38px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1320px;
    }

    /* =========================================
       RESET / GLOBAL
    ========================================== */
    *{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html{
      scroll-behavior: smooth;
    }

    body{
      font-family: "Plus Jakarta Sans", sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    img{
      max-width: 100%;
      display: block;
    }

    a{
      color: inherit;
      text-decoration: none;
    }

    button,
    input{
      font: inherit;
    }

    .container{
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    /* =========================================
       HEADER
    ========================================== */
    .site-header{
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 80;
      border-bottom: 1px solid rgba(31, 43, 68, 0.03);
    }

    .header-inner{
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* Logo */
    .brand{
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .brand-mark{
      display: grid;
      grid-template-columns: repeat(2, 8px);
      gap: 4px;
      width: 20px;
      height: 20px;
    }

    .brand-mark span{
      display: block;
      border-radius: 4px;
    }

    .brand-mark span:nth-child(1){ background:#53d8a7; }
    .brand-mark span:nth-child(2){ background:#8d6df8; }
    .brand-mark span:nth-child(3){ background:#f6486c; }
    .brand-mark span:nth-child(4){ background:#f7c531; }

    .brand-text{
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #1e2d49;
    }

    /* Desktop nav */
    .desktop-nav{
      display: flex;
      align-items: center;
      gap: 34px;
      margin-left: auto;
    }

    .nav-dropdown{
      position: relative;
    }

    .nav-item{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 600;
      color: #101b35;
      transition: color .2s ease;
      padding: 10px 0;
      white-space: nowrap;
    }

    .nav-item:hover{
      color: var(--purple);
    }

    /* Desktop hover dropdown */
    .dropdown-menu{
      position: absolute;
      top: calc(100% + 16px);
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      min-width: 230px;
      background: #fff;
      border: 1px solid rgba(31,43,68,0.06);
      border-radius: 16px;
      padding: 14px 16px;
      box-shadow: 0 18px 45px rgba(31,43,68,0.08);
      opacity: 0;
      visibility: hidden;
      transition: all .22s ease;
      z-index: 30;
    }

    .nav-dropdown:hover .dropdown-menu{
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu p{
      font-size: 14px;
      line-height: 1.7;
      color: #677186;
      font-weight: 500;
    }

    /* Mobile menu button */
    .menu-toggle{
      width: 42px;
      height: 42px;
      border: none;
      background: transparent;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .menu-icon{
      width: 22px;
      display: grid;
      gap: 5px;
    }

    .menu-icon span{
      height: 2px;
      width: 100%;
      background: #585b64;
      border-radius: 2px;
      display: block;
    }

    /* =========================================
       HERO SECTION
    ========================================== */
    .hero{
      padding: 0 0 28px;
      background: #fff;
    }

    .hero-wrap{
  background: linear-gradient(180deg, #f4efe9 0%, #f2ede7 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  min-height: 640px;
  position: relative;
  overflow: visible;
}

    .hero-grid{
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
      align-items: center;
      min-height: 640px;
      gap: clamp(28px, 4vw, 56px);
      position: relative;
      z-index: 2;
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    /* Left hero content */
    .hero-left{
      padding: 72px 0 68px 20px;
      max-width: 760px;
      position: relative;
      z-index: 3;
      min-width: 0;
    }

    .eyebrow{
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      font-weight: 800;
      color: #4b83f7;
      text-transform: uppercase;
      letter-spacing: .02em;
      margin-bottom: 24px;
    }

    .eyebrow::before{
      content:"";
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #68d6c3;
      display: block;
    }

    .hero-title{
      font-size: clamp(42px, 5.6vw, 74px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 800;
      max-width: 700px;
      color: var(--text-dark);
      margin-bottom: 28px;
    }

    .hero-desc{
      font-size: 17px;
      line-height: 1.7;
      color: #5f6675;
      max-width: 690px;
      margin-bottom: 42px;
    }



    /* =========================================
       CUSTOM SEARCHABLE DROPDOWN
    ========================================== */
    .dropdown-wrap{
      position: relative;
      min-width: 0;
      width: 100%;
      max-width: 100%;
      z-index: 9;
    }

    .custom-dropdown{
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  z-index: 1;
}


.custom-dropdown.open{
  z-index: 999;
}
    .dropdown-trigger{
      width: 100%;
      max-width: 100%;
      min-width: 0;
      height: 50px;
      border: 1.5px solid #e8e7eb;
      border-radius: 12px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0 16px;
      cursor: pointer;
      text-align: left;
      transition: border-color .2s ease, box-shadow .2s ease;
      overflow: hidden;
    }

    .dropdown-trigger:hover{
      border-color: #dadbe3;
    }

    .dropdown-trigger:focus{
      outline: none;
      border-color: rgba(143,109,248,0.65);
      box-shadow: 0 0 0 4px rgba(143,109,248,0.10);
    }

    .dropdown-trigger-left{
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      flex: 1;
      overflow: hidden;
    }

    .dropdown-trigger-left svg{
      width: 18px;
      height: 18px;
      stroke: #a0a5b2;
      flex-shrink: 0;
      fill: none;
    }

    .dropdown-text{
      color: #a3a8b3;
      font-size: 16px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0;
      display: block;
      flex: 1;
    }

    .dropdown-text.has-value{
      color: #556070;
    }

    .dropdown-arrow{
      width: 10px;
      height: 10px;
      border-right: 2px solid #8b919d;
      border-bottom: 2px solid #8b919d;
      transform: rotate(45deg) translateY(-2px);
      flex-shrink: 0;
      transition: transform .2s ease;
      margin-left: 4px;
    }

    .custom-dropdown.open .dropdown-arrow{
      transform: rotate(-135deg) translateY(-1px);
    }

    .dropdown-panel{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid #e5e6ec;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(31,43,68,0.10);
  padding: 12px;
  display: none;
  z-index: 9999;
}

.custom-dropdown.drop-up .dropdown-panel{
  top: auto;
  bottom: calc(100% + 10px);
}

.form-dropdown .dropdown-panel{
  top: calc(100% + 8px);
}
.form-dropdown.drop-up .dropdown-panel{
  top: auto;
  bottom: calc(100% + 8px);
}
    .custom-dropdown.open .dropdown-panel{
      display: block;
    }

    .dropdown-search{
      width: 100%;
      height: 38px;
      border: 1.5px solid #e4e4ea;
      border-radius: 10px;
      padding: 0 12px;
      font-size: 14px;
      color: #556070;
      outline: none;
      margin-bottom: 10px;
    }

    .dropdown-search:focus{
      border-color: rgba(143,109,248,0.55);
      box-shadow: 0 0 0 3px rgba(143,109,248,0.08);
    }

    .dropdown-list{
      max-height: 220px;
      overflow-y: auto;
      border-radius: 8px;
      padding-right: 2px;
    }

    .dropdown-list::-webkit-scrollbar{
      width: 8px;
    }

    .dropdown-list::-webkit-scrollbar-track{
      background: #f2f2f5;
      border-radius: 10px;
    }

    .dropdown-list::-webkit-scrollbar-thumb{
      background: #a8a8b0;
      border-radius: 10px;
    }

    .dropdown-item{
      width: 100%;
      border: none;
      background: transparent;
      text-align: left;
      padding: 10px 8px;
      border-radius: 8px;
      font-size: 15px;
      color: #454f63;
      cursor: pointer;
      transition: background .15s ease, color .15s ease;
    }

    .dropdown-item:hover{
      background: #efe8ff;
      color: #3f4c66;
    }

    .dropdown-item.active{
      background: #b9a9ea;
      color: #22304a;
    }

    .dropdown-empty{
      padding: 12px 8px;
      color: #8d94a4;
      font-size: 14px;
    }

    /* =========================================
       RIGHT FORM AREA
    ========================================== */
    .hero-right{
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 54px 20px 54px 0;
      position: relative;
      z-index: 2;
      min-width: 0;
      width: 100%;
    }

    .form-card{
  width: 100%;
  max-width: 450px;
  min-width: 0;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(31,43,68,0.05);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(31,43,68,0.08);
  padding: 28px 24px 24px;
  overflow: visible;
}

    .form-title{
      text-align: center;
      font-size: 22px;
      line-height: 1.2;
      font-weight: 800;
      color: #1f2b44;
      margin-bottom: 10px;
    }

    .form-subtitle{
      text-align: center;
      font-size: 15px;
      line-height: 1.7;
      color: #667287;
      margin-bottom: 22px;
    }

    .lead-form{
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }

    .form-field{
      position: relative;
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }

    .form-input{
      width: 100%;
      max-width: 100%;
      min-width: 0;
      height: 54px;
      border: 1.5px solid #e4e5eb;
      border-radius: 14px;
      background: #fff;
      padding: 0 16px;
      color: #556070;
      font-size: 16px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
      display: block;
    }

    .form-input::placeholder{
      color: #9aa3b3;
    }

    .form-input:focus{
      border-color: rgba(143,109,248,0.65);
      box-shadow: 0 0 0 4px rgba(143,109,248,0.10);
    }

    .form-submit{
      width: 100%;
      max-width: 100%;
      min-width: 0;
      min-height: 54px;
      border: none;
      border-radius: 14px;
      background: linear-gradient(180deg, #9776ff 0%, #8d6df8 100%);
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 16px 30px rgba(143,109,248,0.22);
      transition: transform .2s ease, background .2s ease;
      display: block;
    }

    .form-submit:hover{
      transform: translateY(-1px);
      background: linear-gradient(180deg, #8f6df8 0%, #7d5bef 100%);
    }

    /* Form dropdown version */
    .form-dropdown{
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }

    .form-dropdown .dropdown-trigger{
      height: 54px;
      border-radius: 14px;
      border-color: #e4e5eb;
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }

    .form-dropdown .dropdown-text{
      font-size: 16px;
    }

    .form-dropdown .dropdown-panel{
      top: calc(100% + 8px);
    }

    /* =========================================
       MOBILE / TABLET DRAWER
    ========================================== */
    .drawer{
      position: fixed;
      inset: 0;
      z-index: 100;
      pointer-events: none;
    }

    .drawer.open{
      pointer-events: auto;
    }

    .drawer-backdrop{
      position: absolute;
      inset: 0;
      background: rgba(10, 17, 33, .28);
      opacity: 0;
      transition: opacity .3s ease;
    }

    .drawer.open .drawer-backdrop{
      opacity: 1;
    }

    .drawer-panel{
      position: absolute;
      top: 0;
      right: 0;
      width: min(92vw, 340px);
      height: 100%;
      background: #fff;
      transform: translateX(100%);
      transition: transform .35s ease;
      box-shadow: -18px 0 40px rgba(0,0,0,.12);
      overflow-y: auto;
      padding: 14px 0 28px;
    }

    .drawer.open .drawer-panel{
      transform: translateX(0);
    }

    .drawer-top{
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding: 0 16px 16px;
      border-bottom: 1px solid #efeff3;
    }

    .drawer-profile{
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .profile-avatar{
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff9b1a, #ff7f00);
      display: grid;
      place-items: center;
      font-size: 22px;
    }

    .drawer-profile h4{
      font-size: 14px;
      color: #283449;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .drawer-profile h4 span{
      color: var(--purple);
    }

    .drawer-profile p{
      font-size: 14px;
      color: #8a91a0;
    }

    .close-btn{
      border: none;
      background: transparent;
      width: 36px;
      height: 36px;
      position: relative;
      cursor: pointer;
      flex-shrink: 0;
      margin-top: 4px;
    }

    .close-btn::before,
    .close-btn::after{
      content:"";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 24px;
      height: 2px;
      background: #777;
      border-radius: 2px;
    }

    .close-btn::before{ transform: translate(-50%,-50%) rotate(45deg); }
    .close-btn::after{ transform: translate(-50%,-50%) rotate(-45deg); }

    .drawer-search{
      padding: 22px 16px 12px;
    }

    .drawer-search-box{
      height: 46px;
      border-radius: 10px;
      background: #f4f4f6;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 16px;
      color: #9ca2ae;
    }

    .drawer-search-box svg{
      width: 18px;
      height: 18px;
      stroke: #9ca2ae;
      fill: none;
      stroke-width: 2;
    }

    .drawer-section{
      padding: 10px 0;
    }

    .drawer-list{
      list-style: none;
    }

    .drawer-list li{
      padding: 16px;
      font-size: 17px;
      color: #202c43;
      font-weight: 700;
      border-bottom: 1px solid rgba(0,0,0,0.02);
    }

    .drawer-divider{
      height: 1px;
      background: #ececf0;
      margin: 8px 16px 12px;
    }

    .drawer-heading{
      padding: 14px 16px 10px;
      font-size: 18px;
      font-weight: 800;
      color: #26324a;
    }

    .account-links{
      list-style: none;
    }

    .account-links li{
      padding: 12px 16px;
      font-size: 16px;
      font-weight: 600;
      color: #6f7485;
    }

    .social-row{
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 16px 18px;
    }

    .social{
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #f2f1fb;
      font-size: 14px;
      color: #6f7485;
    }

    .drawer-footer{
      padding: 18px 16px 0;
      font-size: 14px;
      line-height: 1.8;
      color: #8a91a0;
    }

    /* =========================================
       LARGE DESKTOP
    ========================================== */
    @media (min-width: 1440px){
      .hero-grid{
        min-height: 700px;
      }

      .hero-wrap{
        min-height: 700px;
      }

      .form-card{
        max-width: 470px;
      }
    }

    /* =========================================
       TABLET AND BELOW
    ========================================== */
    @media (max-width: 1199px){
      .desktop-nav{
        display: none;
      }

      .menu-toggle{
        display: flex;
        margin-left: auto;
      }

      .hero-wrap{
        min-height: auto;
      }

      .hero-grid{
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 0;
        width: min(var(--container), calc(100% - 32px));
      }

      .hero-left{
        padding: 54px 8px 24px;
        max-width: 100%;
      }

      .hero-right{
        padding: 0 8px 54px;
        justify-content: flex-start;
      }

      .hero-title{
        max-width: 760px;
      }

      .hero-desc{
        max-width: 820px;
      }

      .search-card{
        width: 100%;
        max-width: 880px;
      }

      .form-card{
        max-width: 620px;
      }
    }

    @media (max-width: 991px){
      .container{
        width: min(var(--container), calc(100% - 24px));
      }

      .header-inner{
        min-height: 72px;
      }

      .brand-text{
        font-size: 18px;
      }

      .hero-grid{
        width: calc(100% - 24px);
      }

      .hero-left{
        padding: 42px 0 24px;
      }

      .hero-right{
        padding: 0 0 42px;
      }

      .hero-title{
        font-size: clamp(34px, 7vw, 56px);
        line-height: 1.10;
        margin-bottom: 18px;
        max-width: 640px;
      }

      .hero-desc{
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 28px;
        max-width: 720px;
      }

      .search-card{
        padding: 14px;
        border-radius: 18px;
        gap: 10px;
        margin-bottom: 30px;
        grid-template-columns: 1fr 1fr;
      }

      .search-card .find-btn{
        grid-column: 1 / -1;
        width: 100%;
      }

      .field,
      .dropdown-trigger{
        height: 46px;
      }

      .field input,
      .dropdown-text{
        font-size: 14px;
      }

      .find-btn{
        height: 46px;
        min-width: 118px;
        font-size: 16px;
        padding: 0 20px;
      }

      .form-card{
        padding: 24px 18px 20px;
        border-radius: 22px;
        max-width: 100%;
      }

      .form-title{
        font-size: 20px;
      }

      .form-subtitle{
        font-size: 14px;
      }

      .form-input,
      .form-dropdown .dropdown-trigger,
      .form-submit{
        height: 50px;
      }

      .popular{
        font-size: 15px;
      }
    }

    @media (max-width: 767px){
      .site-header{
        position: relative;
      }

      .header-inner{
        min-height: 70px;
      }

      .hero{
        padding-bottom: 0;
      }

      .hero-wrap{
        border-radius: 0;
        background: linear-gradient(180deg, #f4efe9 0%, #f3eee8 100%);
      }

      .hero-grid{
        width: calc(100% - 28px);
      }

      .hero-left{
        padding: 34px 0 20px;
      }

      .hero-right{
        padding: 0 0 34px;
      }

      .eyebrow{
        font-size: 12px;
        margin-bottom: 18px;
        gap: 8px;
      }

      .eyebrow::before{
        width: 11px;
        height: 11px;
      }

      .hero-title{
        font-size: 37px;
        line-height: 1.14;
        letter-spacing: -0.05em;
        max-width: 340px;
        margin-bottom: 16px;
      }

      .hero-desc{
        font-size: 13px;
        line-height: 1.8;
        max-width: 330px;
        margin-bottom: 22px;
      }

      .search-card{
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
        border-radius: 18px;
        max-width: 100%;
        margin-bottom: 32px;
        overflow: visible;
      }

      .dropdown-wrap,
      .field,
      .find-btn{
        width: 100%;
        max-width: 100%;
      }

      .find-btn{
        justify-self: stretch;
      }

      .dropdown-panel{
        top: calc(100% + 8px);
        box-shadow: 0 10px 24px rgba(31,43,68,0.08);
      }

      .form-card{
        width: 100%;
        max-width: 100%;
        padding: 20px 16px 18px;
        border-radius: 20px;
      }

      .form-title{
        font-size: 18px;
      }

      .form-subtitle{
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 18px;
      }

      .lead-form{
        gap: 12px;
      }

      .form-field,
      .form-input,
      .form-dropdown,
      .form-dropdown .dropdown-trigger,
      .form-submit{
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      .form-input,
      .form-dropdown .dropdown-trigger,
      .form-submit{
        height: 48px;
        border-radius: 12px;
        font-size: 14px;
      }

      .dropdown-search{
        height: 36px;
        font-size: 13px;
      }

      .dropdown-item{
        font-size: 14px;
        padding: 9px 8px;
      }

      .popular{
        font-size: 14px;
        line-height: 1.9;
        max-width: 320px;
      }

      .drawer-panel{
        width: min(100vw, 320px);
      }
    }

    @media (max-width: 480px){
      .container{
        width: calc(100% - 20px);
      }

      .hero-grid{
        width: calc(100% - 20px);
      }

      .hero-left{
        padding: 28px 0 18px;
      }

      .hero-right{
        padding: 0 0 28px;
      }

      .hero-title{
        font-size: 32px;
        max-width: 300px;
      }

      .hero-desc{
        font-size: 12.5px;
        max-width: 300px;
      }

      .search-card{
        padding: 10px;
      }

      .field,
      .dropdown-trigger,
      .find-btn{
        height: 46px;
      }

      .field input,
      .dropdown-text{
        font-size: 13px;
      }

      .form-card{
        padding: 18px 14px 16px;
      }

      .form-title{
        font-size: 17px;
      }

      .form-subtitle{
        font-size: 12px;
      }

      .form-input,
      .form-dropdown .dropdown-trigger,
      .form-submit{
        height: 46px;
        font-size: 13.5px;
      }
    }

    @media (max-width: 390px){
      .hero-title{
        font-size: 30px;
      }

      .hero-desc{
        font-size: 12px;
      }

      .brand-text{
        font-size: 17px;
      }

      .menu-toggle{
        width: 40px;
        height: 40px;
      }

      .form-card{
        padding: 16px 12px 14px;
      }

      .dropdown-trigger,
      .form-dropdown .dropdown-trigger,
      .form-input{
        padding-left: 14px;
        padding-right: 14px;
      }
    }
    
    
    
    
    
    
    
    
    
    
    
    /* =========================================
   BROWSE CATEGORY SECTION
   Fully responsive:
   Desktop = 4 cards
   Tablet = 3 cards
   Mobile = 2 cards
========================================== */
.category-section{
  padding: 72px 0 80px;
  background: #fff;
}

.category-wrap{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.category-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.category-top-left{
  max-width: 760px;
  min-width: 0;
}

.category-title{
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #15284a;
  margin-bottom: 16px;
}

.category-desc{
  font-size: 18px;
  line-height: 1.7;
  color: #7c879d;
  max-width: 720px;
}

.category-top-right{
  flex-shrink: 0;
  padding-top: 10px;
}

.category-browse-btn{
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid #e4e4ea;
  border-radius: 14px;
  background: #fff;
  color: #121c34;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .2s ease;
}

.category-browse-btn:hover{
  border-color: #d6d8e0;
  transform: translateY(-1px);
}

.category-browse-btn span{
  font-size: 20px;
  line-height: 1;
  color: #7f8697;
}

.category-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.category-card{
  background: #fff;
  border: 1px solid #e7e8ee;
  border-radius: 18px;
  min-width: 0;
  min-height: 242px;
  padding: 28px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-card:hover{
  transform: translateY(-3px);
  border-color: #dddff0;
  box-shadow: 0 18px 40px rgba(31,43,68,0.08);
}

.category-icon{
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1;
}

.icon-purple{ background: linear-gradient(180deg, #7e74ff 0%, #c8c3ff 100%); }
.icon-pink{ background: linear-gradient(180deg, #ff5978 0%, #ffd3da 100%); }
.icon-violet{ background: linear-gradient(180deg, #7164ff 0%, #d3ceff 100%); }
.icon-yellow{ background: linear-gradient(180deg, #ffd54a 0%, #fff1b5 100%); }
.icon-deep{ background: linear-gradient(180deg, #5a55a2 0%, #d3d4ff 100%); }
.icon-sky{ background: linear-gradient(180deg, #62cfff 0%, #daf4ff 100%); }

.category-card-title{
  font-size: 19px;
  line-height: 1.28;
  font-weight: 800;
  color: #13284a;
  margin-bottom: 14px;
  max-width: 180px;
  word-break: break-word;
}

.category-card-count{
  font-size: 15px;
  line-height: 1.5;
  color: #98a0b1;
}

.category-cta{
  background: #fff;
  border: 1px solid #e7e8ee;
  border-radius: 18px;
  min-height: 242px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.category-cta-number{
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  font-weight: 800;
  color: #13284a;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.category-cta-text{
  font-size: 16px;
  line-height: 1.7;
  color: #99a1b1;
  margin-bottom: 22px;
}

.category-cta-btn{
  min-height: 50px;
  padding: 0 24px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #9776ff 0%, #8d6df8 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(143,109,248,0.22);
  transition: transform .2s ease, background .2s ease;
}

.category-cta-btn:hover{
  transform: translateY(-1px);
  background: linear-gradient(180deg, #8f6df8 0%, #7d5bef 100%);
}

/* Tablet */
@media (max-width: 1199px){
  .category-section{
    padding: 60px 0 68px;
  }

  .category-wrap{
    width: calc(100% - 32px);
  }

  .category-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Small tablet */
@media (max-width: 991px){
  .category-wrap{
    width: calc(100% - 24px);
  }

  .category-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
  }

  .category-top-right{
    padding-top: 0;
  }

  .category-title{
    font-size: clamp(30px, 7vw, 48px);
    margin-bottom: 12px;
  }

  .category-desc{
    font-size: 16px;
    max-width: 100%;
  }

  .category-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .category-card,
  .category-cta{
    min-height: 220px;
  }
}

/* Mobile - keep 2 cards */
@media (max-width: 767px){
  .category-section{
    padding: 44px 0 52px;
  }

  .category-wrap{
    width: calc(100% - 20px);
  }

  .category-title{
    font-size: 28px;
    line-height: 1.1;
  }

  .category-desc{
    font-size: 14px;
    line-height: 1.8;
  }

  .category-browse-btn{
    min-height: 46px;
    padding: 0 16px;
    font-size: 15px;
    border-radius: 12px;
  }

  .category-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .category-card,
  .category-cta{
    min-height: 190px;
    padding: 18px 12px 16px;
    border-radius: 16px;
  }

  .category-icon{
    width: 62px;
    height: 62px;
    font-size: 28px;
    margin-bottom: 14px;
  }

  .category-card-title{
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 10px;
    max-width: 100%;
  }

  .category-card-count{
    font-size: 13px;
  }

  .category-cta-number{
    font-size: 28px;
    margin-bottom: 12px;
  }

  .category-cta-text{
    font-size: 13px;
    margin-bottom: 16px;
  }

  .category-cta-btn{
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
    width: 100%;
  }
}

/* Extra small mobile - still 2 cards */
@media (max-width: 390px){
  .category-grid{
    gap: 12px;
  }

  .category-card,
  .category-cta{
    min-height: 176px;
    padding: 16px 10px 14px;
  }

  .category-icon{
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .category-card-title{
    font-size: 15px;
  }

  .category-card-count{
    font-size: 12px;
  }

  .category-browse-btn{
    font-size: 14px;
  }
}



/* =========================================
   FOOTER MAIN
========================================== */
.footer-main{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-grid{
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(120px, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-brand-col{
  min-width: 0;
}

.footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.footer-brand-mark{
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 4px;
  width: 20px;
  height: 20px;
}

.footer-brand-mark span{
  display: block;
  border-radius: 4px;
}

.footer-brand-mark span:nth-child(1){ background:#53d8a7; }
.footer-brand-mark span:nth-child(2){ background:#8d6df8; }
.footer-brand-mark span:nth-child(3){ background:#f6486c; }
.footer-brand-mark span:nth-child(4){ background:#f7c531; }

.footer-brand-text{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e2d49;
}

.footer-brand-desc{
  max-width: 310px;
  font-size: 16px;
  line-height: 1.9;
  color: #5f6677;
}

.footer-col-title{
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #13284a;
  margin-bottom: 22px;
}

.footer-links{
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links a{
  font-size: 16px;
  line-height: 1.6;
  color: #5f6677;
  transition: color .2s ease;
}

.footer-links a:hover{
  color: #8d6df8;
}

/* =========================================
   FOOTER BOTTOM
========================================== */
.footer-bottom{
  width: min(1100px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid #e8ddff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-copy{
  font-size: 14px;
  line-height: 1.7;
  color: #5f6677;
}

.footer-copy a{
  color: #8d6df8;
  font-weight: 700;
}

.footer-social{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #d7dbe7;
  display: grid;
  place-items: center;
  color: #8b93a5;
  transition: all .2s ease;
}

.footer-social a:hover{
  color: #8d6df8;
  border-color: #c9baff;
  background: #f8f4ff;
}

.footer-social svg{
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* =========================================
   TABLET
========================================== */
@media (max-width: 1199px){
  .subscribe-wrap,
  .footer-main,
  .footer-bottom{
    width: calc(100% - 32px);
  }

  .footer-grid{
    grid-template-columns: minmax(240px, 1.4fr) repeat(4, minmax(110px, 1fr));
    gap: 28px;
  }
}

/* =========================================
   SMALL TABLET
========================================== */
@media (max-width: 991px){
  .site-footer-area{
    padding: 16px 0 22px;
  }

  .subscribe-wrap{
    width: calc(100% - 24px);
    margin-bottom: 62px;
  }

  .subscribe-card{
    border-radius: 26px;
    padding: 42px 30px 52px;
  }

  .subscribe-title{
    max-width: 420px;
    margin-bottom: 22px;
  }

  .subscribe-form{
    width: 100%;
  }

  .footer-main{
    width: calc(100% - 24px);
  }

  .footer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .footer-brand-desc{
    max-width: 100%;
  }

  .footer-bottom{
    width: calc(100% - 24px);
    margin-top: 28px;
    padding-top: 18px;
  }
}

/* =========================================
   MOBILE
========================================== */
@media (max-width: 767px){
  .site-footer-area{
    padding: 8px 0 18px;
  }

  .subscribe-wrap{
    width: calc(100% - 20px);
    margin-bottom: 52px;
  }

  .subscribe-shadow-one{
    width: calc(100% - 28px);
    height: 20px;
    bottom: -10px;
  }

  .subscribe-shadow-two{
    width: calc(100% - 56px);
    height: 24px;
    bottom: -20px;
  }

  .subscribe-card{
    border-radius: 22px;
    padding: 34px 18px 36px;
  }

  .subscribe-pattern .ring-top{
    width: 150px;
    height: 150px;
    top: -50px;
    left: -8px;
  }

  .subscribe-pattern .pill-group{
    right: 18px;
    gap: 8px;
  }

  .subscribe-pattern .pill{
    width: 26px;
    height: 86px;
    border-radius: 0 0 18px 18px;
  }

  .subscribe-pattern .pill:nth-child(2){
    height: 104px;
  }

  .subscribe-pattern .pill:nth-child(3){
    height: 128px;
  }

  .subscribe-title{
    font-size: 28px;
    line-height: 1.12;
    max-width: 250px;
    margin-bottom: 20px;
  }

  .subscribe-form{
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 14px;
  }

  .subscribe-input{
    height: 46px;
    font-size: 14px;
    padding: 0 12px;
  }

  .subscribe-btn{
    width: 100%;
    min-width: 0;
    height: 46px;
    font-size: 15px;
    border-radius: 10px;
  }

  .footer-main{
    width: calc(100% - 20px);
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand{
    margin-bottom: 18px;
  }

  .footer-brand-desc{
    font-size: 14px;
    line-height: 1.85;
  }

  .footer-col-title{
    font-size: 18px;
    margin-bottom: 14px;
  }

  .footer-links{
    gap: 10px;
  }

  .footer-links a{
    font-size: 14px;
  }

  .footer-bottom{
    width: calc(100% - 20px);
    margin-top: 24px;
    padding-top: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy{
    font-size: 13px;
  }

  .footer-social{
    gap: 10px;
  }

  .footer-social a{
    width: 32px;
    height: 32px;
  }
}

/* =========================================
   EXTRA SMALL MOBILE
========================================== */
@media (max-width: 390px){
  .subscribe-card{
    padding: 28px 14px 30px;
  }

  .subscribe-title{
    font-size: 24px;
    max-width: 220px;
  }

  .subscribe-input{
    font-size: 13px;
  }

  .footer-brand-text{
    font-size: 17px;
  }

  .footer-col-title{
    font-size: 17px;
  }
}
















/* =========================================
   FROM BLOG SECTION
========================================== */
.blog-section{
  padding: 72px 0 80px;
  background: #fff;
}

.blog-wrap{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================
   SECTION TOP
========================================== */
.blog-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.blog-top-left{
  min-width: 0;
}

.blog-title{
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #15284a;
  margin-bottom: 14px;
}

.blog-desc{
  font-size: 17px;
  line-height: 1.7;
  color: #8a93a7;
}

.blog-top-right{
  flex-shrink: 0;
  padding-top: 10px;
}

.blog-view-btn{
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid #e4e4ea;
  border-radius: 14px;
  background: #fff;
  color: #121c34;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .2s ease;
  text-decoration: none;
}

.blog-view-btn:hover{
  border-color: #d6d8e0;
  transform: translateY(-1px);
}

.blog-view-btn span{
  font-size: 20px;
  line-height: 1;
  color: #7f8697;
}

/* =========================================
   BLOG GRID
========================================== */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card{
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid #e5e7ef;
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-card:hover{
  transform: translateY(-3px);
  border-color: #dcdff0;
  box-shadow: 0 18px 38px rgba(31,43,68,0.08);
}

.blog-card-image{
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

.blog-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.blog-author,
.blog-date{
  font-size: 15px;
  line-height: 1.5;
  color: #6f7788;
}

.blog-card-title{
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: #273248;
  margin-bottom: 30px;
  min-height: 78px;
}

.blog-card-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.blog-read-btn{
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #e4e4ea;
  border-radius: 12px;
  background: #fff;
  color: #202c43;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.blog-card:hover .blog-read-btn{
  border-color: #d5d9e6;
}

.blog-save{
  width: 20px;
  height: 20px;
  stroke: #b1b6c4;
  fill: none;
  flex-shrink: 0;
}

/* =========================================
   TABLET
========================================== */
@media (max-width: 1199px){
  .blog-wrap{
    width: calc(100% - 32px);
  }

  .blog-grid{
    gap: 20px;
  }
}

/* =========================================
   SMALL TABLET
========================================== */
@media (max-width: 991px){
  .blog-section{
    padding: 56px 0 64px;
  }

  .blog-wrap{
    width: calc(100% - 24px);
  }

  .blog-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
  }

  .blog-top-right{
    padding-top: 0;
  }

  .blog-title{
    font-size: clamp(30px, 7vw, 48px);
    margin-bottom: 12px;
  }

  .blog-desc{
    font-size: 16px;
  }

  .blog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .blog-card-title{
    min-height: auto;
  }
}

/* =========================================
   MOBILE
========================================== */
@media (max-width: 767px){
  .blog-section{
    padding: 44px 0 52px;
  }

  .blog-wrap{
    width: calc(100% - 20px);
  }

  .blog-title{
    font-size: 28px;
    line-height: 1.1;
  }

  .blog-desc{
    font-size: 14px;
    line-height: 1.8;
  }

  .blog-view-btn{
    min-height: 46px;
    padding: 0 16px;
    font-size: 15px;
    border-radius: 12px;
  }

  .blog-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-card{
    border-radius: 14px;
    padding: 12px;
  }

  .blog-card-image{
    height: 190px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .blog-author,
  .blog-date{
    font-size: 13px;
  }

  .blog-card-title{
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .blog-read-btn{
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 10px;
  }

  .blog-save{
    width: 18px;
    height: 18px;
  }
}

/* =========================================
   EXTRA SMALL MOBILE
========================================== */
@media (max-width: 390px){
  .blog-card{
    padding: 10px;
  }

  .blog-card-image{
    height: 170px;
  }

  .blog-card-title{
    font-size: 15px;
  }
}



