*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --brown: #65221c;
      --brown-dark: #4a1814;
      --brown-deeper: #2e0e0b;
      --gold: #f69c0a;
      --gold-lt: #fbbe4a;
      --gold-pale: #fef3d6;
      --cream: #fdf8f2;
      --white: #ffffff;
      --text: #1a0a08;
      --muted: #8a5a52;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden
    }

    ::-webkit-scrollbar {
      width: 6px
    }

    ::-webkit-scrollbar-track {
      background: var(--cream)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 3px
    }

  #mainNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 100;

    display: flex;
    justify-content: center; /* CENTER CONTENT */
    align-items: center;
    height: 80px;
}

/* Inner container (important for centering like dhanvision) */
.nav-container {
    width: 100%;
    max-width: 1200px; /* controls centered width */
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

  .nav.scrolled {
      background: rgba(207, 207, 207, 0.97) !important;
      /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) */
  }


  .nav-dl-btn {
      display: flex;
      align-items: center;
      gap:8px;
      background: var(--gold);
      color: var(--brown);
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 13px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
  }

  .nav-dl-btn:hover {
      background: var(--gold-lt);
      transform: translateY(-1px)
  }

  .nav-dl-btn svg {
      width: 15px;
      height: 15px
  }
    .hero {
      min-height: 75vh;
      background: linear-gradient(145deg, var(--brown-deeper) 0%, var(--brown) 55%, #8b3020 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 100px 5% 60px;
    }

    .hero-bg-circle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-bg-circle.c1 {
      width: 600px;
      height: 600px;
      top: -200px;
      right: -150px;
      background: rgba(246, 156, 10, 0.07)
    }

    .hero-bg-circle.c2 {
      width: 400px;
      height: 400px;
      bottom: -100px;
      left: -100px;
      background: rgba(255, 255, 255, 0.03)
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid rgba(246, 156, 10, 0.35);
      border-radius: 30px;
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      color: #451712;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero-label span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      display: inline-block;
      animation: pulse 1.8s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.5;
        transform: scale(0.7)
      }
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 58px;
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 16px;
      letter-spacing: -1px;
    }

    .hero-title .accent {
      color: var(--gold)
    }

    .hero-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.62);
      line-height: 1.75;
      margin-bottom: 32px;
      max-width: 440px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 36px
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #fff;
      color: var(--brown);
      padding: 10px 15px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      /*box-shadow: 0 8px 28px rgba(246, 156, 10, 0.35);*/
    }

    .btn-primary:hover {
      background: #ffff;
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(255, 255, 255, 0.226)
    }

    .btn-primary svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0
    }

    .btn-primary .btn-text-sm {
      font-size: 10px;
      font-weight: 400;
      opacity: 0.8;
      display: block
    }

    .btn-primary .btn-text-lg {
      font-size: 15px;
      font-weight: 700;
      display: block
    }

    .btn-qr {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding:6px 11px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-qr:hover {
      background: rgba(255, 255, 255, 0.12)
    }

    .qr-box {
      width: 40px;
      height: 40px;
      background: #fff;
      border-radius: 6px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
      padding: 4px;
    }

    .qr-dot {
      background: var(--brown);
      border-radius: 1px
    }

    .qr-dot.w {
      background: transparent
    }

    .btn-qr-text {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.5
    }

    .btn-qr-text strong {
      display: block;
      color: #fff;
      font-size: 12px
    }

    .hero-stats {
      display: flex;
      gap: 28px;
      flex-wrap: wrap
    }

    .hstat {
      display: flex;
      flex-direction: column
    }

    .hstat-val {
      font-size: 24px;
      font-weight: 700;
      color: #fff
    }

    .hstat-lbl {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 2px
    }

    .hstat-sep {
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
      align-self: stretch
    }

    /* right side phone frames */
    .hero-phones {
      position: relative;
      height: 520px;
      display: flex;
      align-items: flex-end;
      justify-content: center
    }

    .phone-frame {
      position: absolute;
      border-radius: 28px;
      border: 2px solid rgba(255, 255, 255, 0.15);
      overflow: hidden;
      background: #fff;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    }

    .phone-frame.main {
      width: 220px;
      height: 440px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
    }

    .phone-frame.back-l {
      width: 180px;
      height: 360px;
      bottom: 30px;
      left: 10px;
      transform: rotate(-8deg);
      z-index: 2;
      opacity: 0.7;
    }

    .phone-frame.back-r {
      width: 180px;
      height: 360px;
      bottom: 30px;
      right: 10px;
      transform: rotate(8deg);
      z-index: 2;
      opacity: 0.7;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, var(--brown) 0%, var(--brown) 28%, #fdf8f2 28%);
      position: relative;
      overflow: hidden
    }

    .phone-statusbar {
      height: 22px;
      background: var(--brown);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px
    }

    .phone-statusbar span {
      font-size: 8px;
      color: rgba(255, 255, 255, 0.7)
    }

    .phone-hero-area {
      padding: 10px 10px 8px;
      background: var(--brown)
    }

    .phone-logo-row {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px
    }

    .phone-logo-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 7px;
      font-weight: 700;
      color: var(--brown);
      font-family: 'Cormorant Garamond', serif
    }

    .phone-brand {
      font-size: 7px;
      font-weight: 600;
      color: #fff
    }

    .phone-search {
      background: rgba(255, 255, 255, 0.12);
      border-radius: 6px;
      padding: 6px 8px;
      display: flex;
      align-items: center;
      gap: 5px
    }

    .phone-search span {
      font-size: 7px;
      color: rgba(255, 255, 255, 0.5);
      flex: 1
    }

    .phone-search-btn {
      background: var(--gold);
      border-radius: 4px;
      padding: 3px 8px;
      font-size: 7px;
      color: var(--brown);
      font-weight: 700
    }

    .phone-body {
      padding: 8px
    }

    .phone-cats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5px;
      margin-bottom: 8px
    }

    .phone-cat {
      background: #fff;
      border-radius: 7px;
      padding: 6px;
      border: 1px solid rgba(101, 34, 28, 0.08);
      text-align: center
    }

    .phone-cat-icon {
      width: 20px;
      height: 20px;
      background: rgba(246, 156, 10, 0.15);
      border-radius: 5px;
      margin: 0 auto 4px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .phone-cat-icon svg {
      width: 11px;
      height: 11px
    }

    .phone-cat-name {
      font-size: 6px;
      font-weight: 600;
      color: var(--brown)
    }

    .phone-card {
      background: #fff;
      border-radius: 8px;
      margin-bottom: 5px;
      overflow: hidden;
      border: 1px solid rgba(101, 34, 28, 0.07)
    }

    .phone-card-img {
      height: 42px;
      background: linear-gradient(135deg, rgba(101, 34, 28, 0.12), rgba(246, 156, 10, 0.12));
      display: flex;
      align-items: center;
      justify-content: center
    }

    .phone-card-body {
      padding: 5px 6px
    }

    .phone-card-title {
      font-size: 6.5px;
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 2px
    }

    .phone-card-price {
      font-size: 7px;
      font-weight: 700;
      color: var(--gold)
    }

    .phone-card-loc {
      font-size: 6px;
      color: var(--muted)
    }

    /* ─── SECTION SHARED ─── */
    section {
      padding: 35px 5%
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto
    }

    .section-label {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--brown);
      line-height: 1.15;
      margin-bottom: 6px;
    }

    .section-sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 580px
    }

    /* ─── FEATURES SECTION ─── */
    .features-sec {
      background: #fff
    }

    .features-header {
      text-align: center;
      margin-bottom: 56px
    }

    .features-header .section-sub {
      margin: 0 auto
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

     .feat-card {
      background: #ffffff;
      padding: 20px 25px;
      border: 1px solid rgb(101 34 28 / 23%);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      position: relative;
      overflow: hidden;
    }

    .feat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brown), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .feat-card:hover {
      transform: translateY(-5px);
      /* box-shadow: 0 20px 50px rgba(101, 34, 28, 0.1); */
      border-color: rgba(101, 34, 28, 0.14)
    }

    .feat-card:hover::before {
      transform: scaleX(1)
    }

    .feat-icon-wrap {
      width: 35px;
      height: 35px;
      background: linear-gradient(135deg, var(--brown), var(--brown-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      /* box-shadow: 0 8px 20px rgba(101, 34, 28, 0.25); */
    }

    .feat-icon-wrap svg {
      width: 24px;
      height: 24px
    }

    .feat-card h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 10px
    }

    .feat-card p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.65
    }

    /* ─── SCREENSHOT SECTIONS ─── */
    .screen-sec {
      background: var(--brown);
    }

    .screen-sec.alt {
      background: #fff;
    }

    .screen-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .screen-inner.reverse {
      direction: rtl
    }

    .screen-inner.reverse>* {
      direction: ltr
    }

    .screen-content {}

    .screen-content .section-title {
      font-size: 36px
    }

    .screen-points {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px
    }

    .screen-point {
      display: flex;
      gap: 14px;
      align-items: flex-start
    }

    .point-icon {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      background: rgba(246, 156, 10, 0.12);
      border: 1px solid rgba(246, 156, 10, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .point-icon svg {
      width: 16px;
      height: 16px
    }

    .point-text h4 {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 3px
    }

    .point-text h3 {
      font-size: 14px;
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 3px
    }
    .point-text p {
      font-size: 13px;
      color: #bababa;
      line-height: 1.6
    }
.point-text p1 {
      font-size: 13px;
      color: var(--brown);
      line-height: 1.6
    }
    /* screenshot display frames */
    .screen-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 420px
    }

    .screen-glow {
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(246, 156, 10, 0.1);
      filter: blur(40px);
      pointer-events: none;
    }

    .ss-main {
      width: 240px;
      border-radius: 24px;
      border: 3px solid rgb(101 34 28 / 20%);
      box-shadow: 0 24px 64px rgba(101, 34, 28, 0.18);
      overflow: hidden;
      position: relative;
      z-index: 2;
      background: #fff;
    }

    .ss-secondary {
      position: absolute;
      width: 170px;
      border-radius: 18px;
      border: 2px solid rgba(101, 34, 28, 0.1);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      z-index: 3;
      background: #fff;
    }

    .ss-secondary.bottom-left {
      bottom: 0;
      left: 0;
      transform: rotate(-5deg)
    }

    .ss-secondary.top-right {
      top: 0;
      right: 0;
      transform: rotate(4deg)
    }

    /* mock screenshot internals */
    .mock-header {
      background: var(--brown);
      padding: 10px 12px 8px;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .mock-header span {
      font-size: 8px;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 600
    }

    .mock-header-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold)
    }

    .mock-body {
      padding: 10px
    }

    .mock-row {
      display: flex;
      gap: 8px;
      margin-bottom: 8px
    }

    .mock-card-sm {
      flex: 1;
      background: var(--cream);
      border-radius: 8px;
      padding: 8px;
      border: 1px solid rgba(101, 34, 28, 0.07)
    }

    .mock-card-sm-img {
      height: 36px;
      border-radius: 5px;
      margin-bottom: 6px;
      background: linear-gradient(135deg, rgba(101, 34, 28, 0.1), rgba(246, 156, 10, 0.1))
    }

    .mock-line {
      height: 6px;
      background: rgba(101, 34, 28, 0.1);
      border-radius: 3px;
      margin-bottom: 3px
    }

    .mock-line.gold {
      background: rgba(246, 156, 10, 0.4);
      width: 50%
    }

    .mock-line.short {
      width: 60%
    }

    .mock-line.xshort {
      width: 40%
    }

    .mock-full-card {
      background: var(--cream);
      border-radius: 10px;
      padding: 10px;
      margin-bottom: 8px;
      border: 1px solid rgba(101, 34, 28, 0.07)
    }

    .mock-full-card-img {
      height: 60px;
      border-radius: 7px;
      margin-bottom: 7px;
      background: linear-gradient(135deg, rgba(101, 34, 28, 0.08), rgba(246, 156, 10, 0.08))
    }

    .mock-price {
      font-size: 8px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 2px
    }

    .mock-tag {
      display: inline-block;
      background: rgba(246, 156, 10, 0.15);
      color: var(--brown);
      font-size: 6px;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 4px;
      margin-bottom: 4px
    }

    .mock-filter-row {
      display: flex;
      gap: 4px;
      margin-bottom: 8px
    }

    .mock-filter {
      background: var(--brown);
      color: #fff;
      font-size: 6px;
      padding: 3px 8px;
      border-radius: 20px
    }

    .mock-filter.inactive {
      background: rgba(101, 34, 28, 0.1);
      color: var(--brown)
    }

    .mock-map {
      height: 80px;
      background: linear-gradient(135deg, rgba(101, 34, 28, 0.06), rgba(246, 156, 10, 0.06));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden
    }

    .mock-map-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--brown);
      border: 2px solid var(--gold)
    }

    .mock-map::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg, transparent, transparent 12px, rgba(101, 34, 28, 0.04) 12px, rgba(101, 34, 28, 0.04) 13px), repeating-linear-gradient(90deg, transparent, transparent 12px, rgba(101, 34, 28, 0.04) 12px, rgba(101, 34, 28, 0.04) 13px)
    }

    .obj-sec {
      background: linear-gradient(135deg, var(--brown-deeper) 0%, var(--brown) 100%);
      padding: 35px 5%
    }

    .obj-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center
    }

    .obj-content .section-title {
      color: #fff
    }

    .obj-content .section-sub {
      color: rgba(255, 255, 255, 0.6)
    }

    .obj-content p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.75;
      margin-top: 20px
    }

    .obj-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .obj-item {
      background: rgb(255, 255, 255);
      border: 1px solid rgba(255, 255, 255, 0.1);
      /* border-radius: 14px; */
      padding: 15px 15px;
      transition: background 0.2s, transform 0.2s;
    }

    .obj-item:hover {
      background: rgb(255, 255, 255);
      transform: translateY(-2px)
    }

    .obj-item-check {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgb(91 31 25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .obj-item-check svg {
      width: 13px;
      height: 13px
    }

    .obj-item h4 {
      font-size: 13px;
      font-weight: 600;
      color: #5c1f19;
      margin-bottom: 4px
    }

    .obj-item p {
      font-size: 11.5px;
      color: rgb(94 31 25);
      line-height: 1.5;
      margin: 0
    }

    /* ─── PROPERTY TYPES ─── */
    .types-sec {
      background: #fff
    }

    .types-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px
    }

    .type-card {
      /* border-radius: 20px; */
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .type-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(101, 34, 28, 0.18)
    }

    .type-card-bg {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .type-card-bg.plot {
      background: linear-gradient(135deg, #3d1510, var(--brown))
    }

    .type-card-bg.farm {
      background: linear-gradient(135deg, #1a3a1a, #2d6a2d)
    }

    .type-card-bg.comm {
      background: linear-gradient(135deg, #1a1a3d, #2d2d7a)
    }

    .type-card-bg.resi {
      background: linear-gradient(135deg, #3d2a1a, var(--brown-dark))
    }

    .type-card-icon {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .type-card-icon svg {
      width: 30px;
      height: 30px
    }

    .type-card-decor {
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      bottom: -60px;
      right: -40px;
    }

    .type-card-body {
      background: var(--cream);
      padding: 18px 18px 20px;
      border: 1px solid rgba(101, 34, 28, 0.07);
      border-top: none;
      /* border-radius: 0 0 20px 20px; */
    }

    .type-card-body h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 5px
    }

    .type-card-body p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.55
    }

    .type-badge {
      display: inline-block;
      margin-top: 8px;
      background: rgba(246, 156, 10, 0.12);
      color: var(--brown);
      font-size: 10px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px
    }

    /* ─── HOW IT WORKS ─── */
    .how-sec {
      background:#ffff;
    }

    .how-header {
      text-align: center;
      margin-bottom: 60px
    }

    .how-header .section-sub {
      margin: 0 auto
    }

    .how-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative
    }

    .how-steps::before {
      content: '';
      position: absolute;
      top: 52px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 20px, transparent 20px, transparent 32px);
      z-index: 0;
    }

    .how-step {
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1
    }

    .step-num {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--brown);
      color: #fff;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      border: 3px solid var(--gold);
      /* box-shadow: 0 8px 24px rgba(101, 34, 28, 0.25); */
    }

    .how-step h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 8px
    }

    .how-step p {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.6
    }

    /* ─── DOWNLOAD CTA ─── */
    .cta-sec {
      background: linear-gradient(135deg, var(--brown-deeper) 0%, var(--brown) 100%);
      padding: 40px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-sec::before {
      content: '';
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 700px;
      border-radius: 50%;

      display: none;
    }

    .cta-inner {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1
    }

    .cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid rgba(246, 156, 10, 0.3);
      border-radius: 30px;
      padding: 7px 18px;
      font-size: 11px;
      font-weight: 600;
      color: #36110d;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 47px;
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .cta-title .accent {
      color: var(--gold)
    }

    .cta-desc {
      font-size: 15px;
      color: rgb(255 255 255 / 81%);
      line-height: 1.7;
      margin-bottom: 20px
    }

    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 30px
    }

    .cta-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.726)
    }

    .trust-item svg {
      width: 14px;
      height: 14px;
      opacity: 0.7
    }

    footer {
      background: var(--brown-deeper);
      padding: 10px 5% 15px;
    }

    .footer-top {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      /* padding-bottom: 28px; */
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .footer-logo-badge {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--brown);
    }

    .footer-brand {
      font-size: 14px;
      font-weight: 600;
      color: #fff
    }

    .footer-tagline {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 2px;
      letter-spacing: 1px;
      text-transform: uppercase
    }

    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap
    }

    .footer-links a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color 0.2s
    }

    .footer-links a:hover {
      color: var(--gold)
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-copy {
      font-size: 13px;
      color: rgb(255 255 255 / 65%);
    }

    .footer-made {
      font-size: 13px;
      color: rgb(255 255 255 / 65%);
    }

    @media(max-width:900px) {
      .hero-grid {
        grid-template-columns: 1fr
      }

      .hero-phones {
        display: none
      }

      .hero-title {
        font-size: 42px
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .screen-inner {
        grid-template-columns: 1fr;
        gap: 36px
      }

      .screen-inner.reverse {
        direction: ltr
      }

      .obj-inner {
        grid-template-columns: 1fr
      }

      .types-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .how-steps {
        grid-template-columns: repeat(2, 1fr)
      }

      .how-steps::before {
        display: none
      }
    }

    @media(max-width:560px) {
      nav {
        padding: 0 4%
      }

      .hero-title {
        font-size: 34px
      }

      .section-title {
        font-size: 30px
      }

      .features-grid {
        grid-template-columns: 1fr
      }

      .types-grid {
        grid-template-columns: 1fr
      }

      .how-steps {
        grid-template-columns: 1fr
      }

      .obj-grid {
        grid-template-columns: 1fr
      }

      .cta-title {
        font-size: 36px
      }

      .hero-desc {
        font-size: 13.5px
      }
    }

    /* animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .hero-left>* {
      animation: fadeUp 0.7s ease both
    }

    .hero-label {
      animation-delay: 0.1s
    }

    .hero-title {
      animation-delay: 0.2s
    }

    .hero-desc {
      animation-delay: 0.3s
    }

    .hero-btns {
      animation-delay: 0.4s
    }

    .hero-stats {
      animation-delay: 0.5s
    }