/* index.css — homepage-specific styles */

    /* ── HERO ── */
    .hero {
      padding: 148px 48px 80px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      overflow: visible;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 38%;
      left: 50%;
      width: 700px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(ellipse at center,
          oklch(0.72 0.14 290 / 0.28) 0%,
          oklch(0.60 0.18 272 / 0.12) 45%,
          transparent 75%);
      filter: blur(48px);
      pointer-events: none;
      z-index: 0;
      animation: hero-glow-drift 7s ease-in-out infinite;
    }

    .hero>* {
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue-soft);
      color: var(--blue);
      font-size: 13px;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 28px;
      border: 1px solid oklch(0.50 0.22 264 / 20%);
    }

    .hero-badge span {
      width: 6px;
      height: 6px;
      background: var(--blue);
      border-radius: 50%;
      display: inline-block;
      animation: pulse-dot 2.2s ease-in-out infinite;
    }



    .hero-sub {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text-2);
      line-height: 1.65;
      max-width: 560px;
      margin: 0 auto 40px;
      text-wrap: pretty;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 72px;
    }

    .btn-lg {
      text-decoration: none;
      font-family: inherit;
      font-size: 16px;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 13px;
      cursor: pointer;
      transition: all .18s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
    }

    .btn-lg.primary {
      background: linear-gradient(115deg, var(--blue) 0%, var(--indigo) 100%);
      color: white;
      box-shadow: 0 4px 18px oklch(0.50 0.22 290 / 30%);
    }

    .btn-lg.primary:hover {
      background: linear-gradient(115deg, var(--blue-h) 0%, oklch(0.40 0.26 272) 100%);
      transform: translateY(-2px);
      box-shadow: 0 10px 32px oklch(0.50 0.22 264 / 42%);
    }

    .btn-lg.ghost {
      background: white;
      color: var(--text);
      border: 1.5px solid var(--border);
    }

    .btn-lg.ghost:hover {
      border-color: rgba(0, 0, 0, 0.2);
      transform: translateY(-1px);
      box-shadow: var(--shadow);
    }

    
    /* ── APP WINDOW MOCKUP ── */
    .hero-visual {
      background: white;
      border-radius: 20px;
      box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
      overflow: hidden;
      max-width: 900px;
      margin: 0 auto;
    }

    .win-bar {
      display: flex;
      align-items: center;
      gap: 0;
      padding: 12px 20px;
      background: #F0F1F5;
      border-bottom: 1px solid var(--border);
    }

    .tl {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin-right: 7px;
    }

    .tl-r {
      background: #FF5F57;
    }

    .tl-y {
      background: #FFBD2E;
    }

    .tl-g {
      background: #28C840;
    }

    .win-title {
      flex: 1;
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-3);
      letter-spacing: -0.01em;
    }

    .win-store-tabs {
      display: flex;
      gap: 6px;
    }

    .win-tab {
      font-size: 11px;
      font-weight: 600;
      padding: 4px 11px;
      border-radius: 6px;
      color: var(--text-3);
      background: transparent;
      cursor: default;
    }

    .win-tab.active {
      background: var(--blue);
      color: white;
    }

    .win-body {
      display: grid;
      grid-template-columns: 200px 1fr 220px;
      min-height: 340px;
    }

    .win-sidebar {
      border-right: 1px solid var(--border);
      padding: 16px 12px;
      background: #FAFBFF;
    }

    .win-sidebar-title {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0 8px;
      margin-bottom: 8px;
    }

    .win-app-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 8px;
      margin-bottom: 2px;
      cursor: default;
    }

    .win-app-item.active {
      background: var(--blue-soft);
    }

    .win-app-icon {
      width: 30px;
      height: 30px;
      border-radius: 7px;
      flex-shrink: 0;
    }

    .win-app-name {
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.2;
    }

    .win-app-sub {
      font-size: 10px;
      color: var(--text-3);
    }

    .win-main {
      padding: 20px 24px;
      overflow: hidden;
    }

    .win-section-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 14px;
    }

    .win-field {
      margin-bottom: 14px;
    }

    .win-field-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-2);
      margin-bottom: 5px;
    }

    .win-field-value {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 8px 12px;
      font-size: 12px;
      color: var(--text);
      line-height: 1.4;
    }

    .win-field-value.multiline {
      height: 64px;
      overflow: hidden;
    }

    .win-right {
      border-left: 1px solid var(--border);
      padding: 16px;
      background: #FAFBFF;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .preview-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-align: center;
    }

    .preview-phone {
      width: 100%;
      aspect-ratio: 9/16;
      background: white;
      border-radius: 14px;
      border: 2px solid #DDE0E8;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .preview-phone-bar {
      height: 28px;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .preview-phone-bar-text {
      font-size: 9px;
      color: white;
      font-weight: 700;
    }

    .preview-phone-body {
      flex: 1;
      padding: 10px 8px;
    }

    .preview-phone-title {
      font-size: 11px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .preview-phone-desc {
      font-size: 8px;
      color: var(--text-2);
      line-height: 1.4;
    }

    .preview-star-row {
      display: flex;
      gap: 2px;
      margin-top: 6px;
    }

    .star {
      color: #F5A623;
      font-size: 10px;
    }

    
    /* ── BENTO GRID ── */
    .bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }

    .card {
      background: var(--surface);
      border-radius: var(--r);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.11), 0 2px 8px rgba(0, 0, 0, 0.05);
      border-color: rgba(0, 0, 0, 0.13);
    }

    .card-inner {
      padding: 28px 28px 0;
    }

    .card-tag {
      font-size: 11px;
      font-weight: 700;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 10px;
    }

    .card-title {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .card-desc {
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.65;
      margin-bottom: 24px;
    }

    /* Span utilities */
    .col-8 {
      grid-column: span 8;
    }

    .col-7 {
      grid-column: span 7;
    }

    .col-6 {
      grid-column: span 6;
    }

    .col-5 {
      grid-column: span 5;
    }

    .col-4 {
      grid-column: span 4;
    }

    .col-3 {
      grid-column: span 3;
    }

    /* Feature illustrations inside cards */
    .feat-vis {
      height: auto;
      min-height: 180px;
      overflow: hidden;
      position: relative;
      margin-top: auto;
    }

    /* Multi-store card illustration */
    .store-split {
      display: flex;
      height: 100%;
    }

    .store-half {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 20px;
    }

    .store-half.ios {
      background: linear-gradient(135deg, #F0F3FF 0%, #E8EEFF 100%);
      border-right: 1px solid var(--border);
    }

    .store-half.gp {
      background: linear-gradient(135deg, #F0FFF5 0%, #E6FFF0 100%);
    }

    .store-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: grid;
      place-items: center;
    }

    .store-icon.ios-icon {
      background: linear-gradient(135deg, #2E7CF6, #1A5FCC);
    }

    .store-icon.gp-icon {
      background: linear-gradient(135deg, #34A853, #1A8A3C);
    }

    .store-icon svg {
      width: 30px;
      height: 30px;
      fill: white;
    }

    .store-name {
      font-size: 13px;
      font-weight: 700;
    }

    .store-stat {
      font-size: 11px;
      color: var(--text-3);
      font-weight: 500;
    }

    .store-sync-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 5px 10px;
      font-size: 11px;
      font-weight: 700;
      color: var(--blue);
      box-shadow: var(--shadow);
      white-space: nowrap;
      z-index: 2;
    }

    /* Metadata card illustration */
    .meta-vis {
      padding: 16px 20px 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      height: 100%;
    }

    .meta-field-row {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .meta-field-lbl {
      font-size: 9px;
      font-weight: 700;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .meta-field-val {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 11px;
      color: var(--text);
    }

    .meta-field-val.long {
      height: 44px;
    }

    .meta-badge-row {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .meta-badge {
      background: var(--blue-soft);
      color: var(--blue);
      font-size: 10px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 100px;
    }

    /* Screenshot design card */
    .screen-canvas {
      height: 100%;
      background: linear-gradient(160deg, #F0F2FF 0%, #EEF0FF 100%);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-top: 20px;
      gap: 10px;
    }

    .device-mini {
      width: 60px;
      background: white;
      border-radius: 10px;
      border: 2px solid #D0D4E8;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .device-mini-bar {
      height: 8px;
      background: var(--blue);
    }

    .device-mini-body {
      height: 90px;
      padding: 4px;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .device-mini-line {
      height: 5px;
      border-radius: 2px;
      background: var(--bg);
    }

    .device-mini-line.accent {
      background: var(--blue-soft);
      width: 60%;
    }

    .device-mini.tall {
      width: 50px;
    }

    .device-mini.tall .device-mini-body {
      height: 110px;
    }

    .device-mini.featured {
      width: 70px;
      transform: translateY(-10px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

    /* Pricing vis */
    .pricing-table-vis {
      overflow: hidden;
      height: 100%;
    }

    .pt-header {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0;
      background: var(--bg);
      padding: 8px 12px;
      border-bottom: 1px solid var(--border);
    }

    .pt-col-h {
      font-size: 9px;
      font-weight: 700;
      color: var(--text-3);
      text-transform: uppercase;
    }

    .pt-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      padding: 7px 12px;
      border-bottom: 1px solid var(--border);
      align-items: center;
    }

    .pt-row:nth-child(odd) {
      background: #FAFBFF;
    }

    .pt-flag {
      font-size: 13px;
      margin-right: 4px;
    }

    .pt-cell {
      font-size: 11px;
      color: var(--text);
    }

    .pt-cell.currency {
      font-size: 10px;
      color: var(--text-3);
    }

    /* Preview vis */
    .preview-vis {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 16px 20px 0;
      gap: 12px;
      height: 100%;
      background: linear-gradient(180deg, #F5F7FF 0%, #EDF0FF 100%);
    }

    .preview-device {
      width: 110px;
      background: white;
      border-radius: 14px;
      border: 2px solid #CDD1E0;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    }

    .preview-device-notch {
      height: 18px;
      background: #111;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .preview-device-notch-dot {
      width: 30px;
      height: 6px;
      background: #333;
      border-radius: 3px;
    }

    .preview-device-screen {
      padding: 8px;
    }

    .preview-screen-img {
      width: 100%;
      height: 60px;
      background: var(--blue-soft);
      border-radius: 6px;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .preview-screen-text {
      font-size: 9px;
      color: var(--blue);
      font-weight: 700;
    }

    .preview-screen-title {
      font-size: 9px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .preview-screen-sub {
      font-size: 7px;
      color: var(--text-3);
      line-height: 1.4;
    }

    .preview-device.ipad {
      width: 140px;
    }

    .preview-device.ipad .preview-device-screen {
      padding: 10px;
    }

    .preview-device.ipad .preview-screen-img {
      height: 80px;
    }

    /* Screenshot manager vis */
    .sm-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
      padding: 16px;
      height: 100%;
      background: var(--bg);
      align-content: start;
    }

    .sm-thumb {
      border-radius: 6px;
      border: 1.5px solid var(--border);
      overflow: hidden;
      background: white;
      aspect-ratio: 9/16;
      display: flex;
      flex-direction: column;
    }

    .sm-thumb-top {
      flex: 1;
    }

    .sm-thumb-drag {
      height: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sm-drag-dots {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      width: 12px;
    }

    .sm-drag-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--border);
    }

    
    /* ── DOWNLOAD SECTION ── */
    .download-section {
      background: white;
      border-radius: 24px;
      padding: 72px 64px;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 64px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .download-text {
      flex: 1;
    }

    .download-platforms {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .dl-btn {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--text);
      color: white;
      text-decoration: none;
      border-radius: 14px;
      padding: 14px 22px;
      transition: all .18s;
      border: 1.5px solid transparent;
      min-width: 200px;
    }

    .dl-btn:hover {
      background: #1a1d26;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.20);
    }

    .dl-btn-icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
    }

    .dl-btn-info {
      display: flex;
      flex-direction: column;
    }

    .dl-btn-sub {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
    }

    .dl-btn-name {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.2;
    }

    .dl-btn.secondary {
      background: white;
      color: var(--text);
      border-color: var(--border);
    }

    .dl-btn.secondary:hover {
      background: var(--bg);
      box-shadow: var(--shadow);
    }

    .dl-btn.secondary .dl-btn-sub {
      color: var(--text-3);
    }

    
    /* ── PRICING ── */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 480px;
      margin: 0 auto;
    }

    .pricing-card {
      background: white;
      border-radius: 20px;
      border: 1.5px solid var(--border);
      padding: 36px;
      position: relative;
      box-shadow: var(--shadow);
    }

    .pricing-card.featured {
      border-color: var(--blue);
      box-shadow: 0 0 0 1px var(--blue), 0 12px 40px oklch(0.50 0.22 264 / 18%);
    }

    .pricing-badge-popular {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--blue);
      color: white;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .pricing-plan {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .pricing-price {
      font-size: 44px;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 4px;
    }

    .pricing-price span {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-2);
    }

    .pricing-period {
      font-size: 14px;
      color: var(--text-3);
      margin-bottom: 28px;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text);
      font-weight: 500;
    }

    .pf-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #E8F4E8;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .pf-check.blue {
      background: var(--blue-soft);
    }

    .pf-check svg {
      width: 10px;
      height: 10px;
    }

    .pf-check svg path {
      stroke: #34A853;
    }

    .pf-check.blue svg path {
      stroke: var(--blue);
    }

    .pricing-cta {
      display: block;
      text-align: center;
      text-decoration: none;
      font-family: inherit;
      font-weight: 700;
      font-size: 15px;
      padding: 13px;
      border-radius: 12px;
      transition: all .18s;
      cursor: pointer;
      border: none;
    }

    .pricing-cta.outline {
      background: white;
      color: var(--text);
      border: 1.5px solid var(--border);
    }

    .pricing-cta.outline:hover {
      border-color: rgba(0, 0, 0, 0.25);
      transform: translateY(-1px);
    }

    .pricing-cta.filled {
      background: var(--blue);
      color: white;
    }

    .pricing-cta.filled:hover {
      background: var(--blue-h);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px oklch(0.50 0.22 264 / 35%);
    }

    
    /* ── TESTIMONIALS ── */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testi-card {
      background: white;
      border-radius: var(--r);
      border: 1px solid var(--border);
      padding: 28px;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .testi-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .testi-stars {
      display: flex;
      gap: 3px;
    }

    .testi-star {
      color: #F5A623;
      font-size: 16px;
    }

    .testi-text {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text);
      font-style: italic;
      flex: 1;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 22px;
      font-weight: 900;
      color: white;
      flex-shrink: 0;
      font-family: Georgia, serif;
      line-height: 1;
      padding-bottom: 4px;
    }

    .testi-name {
      font-size: 14px;
      font-weight: 700;
    }

    .testi-role {
      font-size: 12px;
      color: var(--text-3);
    }

    
    /* ── SECTION ALTERNATING BACKGROUNDS ── */
    #pricing,
    #testimonials {
      background: white;
      box-shadow: inset 0 1px 0 var(--border), inset 0 -1px 0 var(--border);
    }

    
    /* ── FAQ ── */
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      background: white;
      border-radius: 14px;
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      cursor: pointer;
      gap: 16px;
      transition: background .15s;
      font-weight: 600;
      font-size: 16px;
    }

    .faq-q:hover {
      background: var(--bg);
    }

    .faq-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--bg);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-size: 14px;
      transition: transform .2s;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--blue-soft);
      color: var(--blue);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }

    .faq-a-inner {
      padding: 0 24px 20px;
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.7;
      text-align: left;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
    }

    
    /* ── BLOG ── */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .blog-card {
      background: white;
      border-radius: var(--r);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      transition: all .2s;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .blog-img {
      height: 160px;
      background: var(--blue-soft);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .blog-img-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .blog-img-icon {
      width: 40px;
      height: 40px;
      background: var(--blue);
      border-radius: 10px;
      display: grid;
      place-items: center;
    }

    .blog-img-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .blog-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .blog-tag {
      font-size: 11px;
      font-weight: 700;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    .blog-title {
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.3;
    }

    .blog-date {
      font-size: 12px;
      color: var(--text-3);
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }

    

    /* Responsive – index */
    /* Responsive */
    @media (max-width: 900px) {
      nav {
        padding: 0 20px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        padding: 120px 24px 60px;
      }

      section {
        padding: 64px 24px;
      }

      .win-body {
        grid-template-columns: 140px 1fr;
      }

      .win-right {
        display: none;
      }

      .bento {
        grid-template-columns: 1fr 1fr;
      }

      .col-8,
      .col-7,
      .col-6,
      .col-5,
      .col-4,
      .col-3 {
        grid-column: span 2;
      }

      .download-section {
        flex-direction: column;
        padding: 48px 32px;
        gap: 40px;
      }

      .pricing-grid,
      .testi-grid,
      .blog-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }
  