  :root {
      --bg: #a9afb9ff;
      --card: #121a2b;
      --card-soft: #162032;
      --text: #e5e7eb;
      --muted: #9ca3af;
      --green: #22c55e;
      --red: #ef4444;
      --purple: #6d28d9;
      --border: rgba(255,255,255,.08);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Inter', sans-serif;
      background: radial-gradient(circle at top left, #2248d2ff, rgb(12, 59, 244));
      color: var(--text);
      min-height: 100vh;
    }

    /* HEADER */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 40px;
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      background: rgb(38, 33, 203);
      z-index: 1000;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .logo {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, #81a019ff, #9dc80fff);
      display: grid;
      place-items: center;
      font-weight: 800;
      color: #022c22;
    }

    nav {
      display: flex;
      gap: 28px;
      font-size: 0.95rem;
    }

    .menu-btn {
      display: none;
      background: none;
      border: 1px solid var(--border);
      color: #fff;
      font-size: 1.3rem;
      padding: 6px 12px;
      border-radius: 10px;
      cursor: pointer;
    }

    nav a {
      text-decoration: none;
      color: var(--muted);
      transition: .3s;
    }

    nav a:hover { color: #e1c225ff;
      transition: .3s;
      text-decoration: underline;
    }

    .wallet-btn {
      background: rgb(114, 194, 17) ;
      border: none;
      padding: 10px 18px;
      color: #fff;
      border-radius: 10px;
      font-weight: bold;
      cursor: pointer;
      text-transform: uppercase;
    }

    /* LAYOUT */
    .container {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 40px;
      padding: 60px 40px;
    }

    /* LEFT CONTENT */
    .heros span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #22a2c5ff;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .heros h1 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .heros h1 strong { color: yellow !important; }

    .heros p {
      color: var(--muted);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      background: linear-gradient(135deg, #84c522ff, #84a316ff);
      color: #022c22;
      border-radius: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 10px 30px rgba(34,197,94,.35);
    }

    .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(34,197,94,.45);
    }

    /* DASHBOARD */
    .dashboard {
      background: linear-gradient(180deg, var(--card), var(--card-soft));
      border-radius: 22px;
      padding: 26px;
      border: 1px solid var(--border);
      box-shadow: 0 30px 80px rgba(0,0,0,.45);
    }

    .dashboard h2 {
      font-size: 1.5rem;
      margin-bottom: 6px;
    }

    .dashboard small {
      color: var(--muted);
    }

    .asset {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background: rgba(255,255,255,.02);
      border: 1px solid var(--border);
      border-radius: 16px;
      margin-top: 16px;
    }

    .asset-left {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 600;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green);
    }

    .price {
      font-weight: 700;
      font-size: 1.05rem;
    }

    .change.up { color: var(--green); }
    .change.down { color: var(--red); }

    .market {
      margin-top: 18px;
      font-size: 0.85rem;
      color: var(--muted);
    }
    /*resolve section*/
    .hero {
            text-align: center;
            margin-bottom: 80px;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--primary);
            margin-bottom: 20px;
        }

        .hero p {
            color: var(--text-dim);
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgb(38, 39, 37);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .status-dot {
            width: 20px;
            height: 18px;
            background: yellowgreen;
            border-radius: 50%;
            box-shadow: 0 0 8px var(--primary);
        }

        /* --- PORTAL CARD --- */
        .portal-card {
            background: rgb(18, 18, 20);
            max-width: 500px;
            margin: 0 auto 100px;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .portal-header {
            background: #9ad70c;
            padding: 15px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .portal-body {
            padding: 30px;
        }

        .info-box {
            background: rgba(83, 86, 91, 0.5);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .btn-connect {
            width: 40%;
            margin: auto;
            padding: 14px;
            background: yellowgreen;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        /* --- SOLUTIONS GRID --- */
        .grid-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .solution-grid  a{
            text-decoration: none;
            color: inherit;

        }

        .solution-item {
            background: rgb(7, 12, 44);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--border);
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
            cursor: pointer;
        }

        .solution-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }
        .solution-item i {
            font-size: 2rem;
            color: rgb(186, 195, 169);
            margin-bottom: 20px;
        }
        .solution-item h3 {
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
            margin-bottom: 15px;
            color: yellowgreen;
        }

        .solution-item p {
            font-size: 0.9rem;
            color: white;
            margin: 0;
        }

        /* --- FEATURES SECTION --- */
        .features-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 100px;
        }

        .feature-card {
            background: rgba(201, 206, 215, 0.5);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
        }

        .icon-circle {
            width: 60px;
            height: 60px;
            background: yellowgreen;
            border-radius: 12px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Responsive Tweaks */
        @media (max-width: 768px) {
            .container { padding: 40px 15px; }
            .hero h1 { font-size: 2.2rem; }
        }
    /* RESPONSIVE */
    @media (max-width: 900px) {
      .container { grid-template-columns: 1fr; }

      nav {
        position: absolute;
        top: 70px;
        right: 40px;
        background: linear-gradient(180deg, var(--card), var(--card-soft));
        flex-direction: column;
        gap: 18px;
        padding: 20px;
        border-radius: 16px;
        border: 1px solid var(--border);
        display: none;
      }

      nav.show { display: flex; }

      .menu-btn { display: block; }
    }
      nav { display: none;
       }
       .choose {
  width: 100%;
  max-width: 1100px;
  margin: 90px auto 70px;
  padding: 0 24px;
  text-align: center;
}

.choose .title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
}

/* Accent "together" */
.choose .title::after {
  content: " together.";
  color: #22c55e;
}

.choose .description {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.8;
  color: #9ca3af;
}
.choose-container {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.choose-item {
  background: linear-gradient(180deg, #121a2b, #162032);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 42px 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.choose-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(34,197,94,.12), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}

.choose-item:hover::before {
  opacity: 1;
}

.choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

/* ICON */
.choose-item i {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9bc73d, #9cc70e);
  color: #022c22;
  border-radius: 16px;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

/* TITLE */
.choose-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

/* TEXT */
.choose-description {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FEATURE CARD (OPTIONAL HIGHLIGHT) */
.choose-item:nth-child(2) {
  box-shadow: 0 0 0 1px rgba(34,197,94,.35),
              0 35px 80px rgba(34,197,94,.18);
}
    .choosex {
  width: 100%;
  max-width: 1100px;
  margin: 90px auto 70px;
  padding: 0 24px;
  text-align: center;
}

.choosex .titlex {
  font-size: 16px;
  line-height: 1.2;
  color: #d2b4b4c2;
  margin-bottom: 24px;
}
.choosex .description {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.8;
  color: #d4d7dc;
}
/* TABLET */
.process {
  padding: 90px 24px;
}

.process-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.process-card {
  position: relative;
  background: linear-gradient(180deg, #121a2b, #162032);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 70px 30px 40px;
  text-align: center;
  transition: all 0.35s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}

/* STEP CIRCLE */
.step {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #8cc522, #76a316);
  color: #022c22;
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(34,197,94,.4);
}

/* TEXT */
.process-card h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: #ffffff;
}

.process-card p {
  color: #9ca3af;
  line-height: 1.7;
  font-size: 0.95rem;
}
.chris {
  max-width: 1000px;
  margin: 100px auto;
  padding: 70px 40px;
  text-align: center;
  border-radius: 26px;
  border: none;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.chris::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(34,197,94,0.15), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.cris-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #e0d905;
  margin-bottom: 22px;
}

.chris-description {
  max-width: 820px;
  margin: 0 auto 40px;
  color: white;
  font-size: 1rem;
  line-height: 1.8;
}

/* BUTTON */
.chris-btn {
  padding: 15px 34px;
  border-radius: 14px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, #82ae1d, #84a316);
  box-shadow: 0 14px 40px rgba(34,197,94,0.4);
  transition: all 0.3s ease;
}

.chris-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(34,197,94,0.55);
}
.hero {
  padding: 80px 6%;

}

.hero-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.hero-text h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.subtitle {
  color: #fff;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9fc522, #84a316);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* DASHBOARD */
.dashboard {
  background: linear-gradient(180deg, #111827, #0f172a);
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.dashboard h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.dash-sub {
  color: #9ca3af;
  margin-bottom: 30px;
}

.dash-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.03);
  padding: 18px 22px;
  border-radius: 16px;
  margin-bottom: 18px;
}

.status {
  font-weight: 700;
}

.status.good {
  color: #22c55e;
}

.status.warn {
  color: #facc15;
}

.status.high {
  color: #60a5fa;
}
.containerx {
            width: 100%;
            max-width: 1100px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 40px;
            align-items: center;
            border: 3px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            background-color: rgb(252, 249, 249);
            margin: auto;
        }

        /* Left Side: Content */
        .contentx h1 {
            font-size: 1.5rem;
            line-height: 1;
            margin-bottom: 20px;
            color: rgb(166, 205, 50);
        }

        .contentx p {
            font-size: 1.1rem;
            color: black;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .featuresx {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            border: 2px solid rgba(255,255,255,0.1);
            padding: 10px 14px;
            border-radius: 12px;
            color: gray;
            background-color: rgb(18, 15, 15);
        }

        .check-icon {
            color: yellowgreen;
            font-weight: bold;
        }

        /* Right Side: Metrics Card */
        .metrics-card {
            background-color: black;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .metrics-card h2 {
            margin-top: 0;
            margin-bottom: 30px;
            font-size: 1.5rem;
        }

        .metric-group {
            margin-bottom: 25px;
        }

        .metric-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .metric-percentage {
            color: var(--primary-green);
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgb(23, 97, 23);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--primary-green);
            border-radius: 10px;
        }
        .header-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .tagline {
            color: var(--accent-green);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            margin-bottom: 15px;
            display: block;
        }

        .header-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
        }

        /* Grid Layout */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 1000px;
            width: 100%;
            padding: 55px;
        }

        /* Card Styling */
        .feature-card {
            background-color: rgb(24, 23, 23);
            padding: 30px 18px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(34, 197, 94, 0.3);
        }

        /* Icon Styling */
        .icon-box {
            background-color: rgb(169, 205, 50);
            width: 60px;
            height: 600px; /* Note: Reduced in render for visual accuracy */
            max-height: 60px;
            border-radius: 12px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
        }

        .icon-box svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        /* Text inside cards */
        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: gray;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }
        .solutions-wrapper {
            max-width: 800px;
            width: 80%;
            text-align: center;
            margin: auto;
        }

        /* Header Styling */
        .solutions-title {
            color: yellowgreen;
            font-size: 2.5rem;
            margin-bottom: 15px;
            width: 100%;
        }
      
        .solutions-header p {
            color: #ffffff;
            max-width: 1000px;
            margin: 0 auto 50px;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
            gap: 20px;
        }
  
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.solutions-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card styling */
.solution-card {
    background: #0f172a; /* dark blue */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Title */
.solution-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

/* Description */
.solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Hover effects */
.solutions-grid a:hover .solution-card {
    transform: translateY(-6px);
    border-color: #38bdf8;
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.25);
}

/* Subtle glow line on hover */
.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(56, 189, 248, 0.15),
        transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.solutions-grid a:hover .solution-card::before {
    opacity: 1;
}

/* Active click effect */
.solutions-grid a:active .solution-card {
    transform: scale(0.98);
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .solution-card {
        padding: 16px;
    }

    .solution-card h3 {
        font-size: 16px;
    }

    .solution-card p {
        font-size: 13px;
    }
}

        /* Card Styling */
        .solution-card {
            background-color: rgb(24, 23, 23);
            padding: 35px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-decoration: none; /* In case you wrap these in <a> tags */
            color: inherit;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .solution-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-5px);
            background-color: #1e293b;
        }

        .solution-card h3 {
            font-size: 1rem;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            color: yellowgreen;
            text-transform: uppercase;
        }

        .solution-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }
        .footer{
    text-align: center;
    padding: 20px;
    background-color: #121a2b;
    color: #ffffff;
    margin-top: 40px;
    border-top: 1px solid var(--border);
        }
        /* Responsive Breakpoints */
        @media (max-width: 1100px) {
            .solutions-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for smaller laptops */
            }
        }

        @media (max-width: 850px) {
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
            }
            .solutions-header h1 { font-size: 2rem; }
        }

        @media (max-width: 500px) {
            .solutions-grid {
                grid-template-columns: 1fr; /* 1 column for phones */
            }
        }
        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 650px) {
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            .header-section h1 {
                font-size: 1.8rem;
            }
        }

        /* Responsive Breakpoint */
        @media (max-width: 900px) {
            .containerx {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 20px;
            }

            .contentx h1 { font-size: 2.2rem; }

            .featuresx {
                justify-items: center;
                text-align: left;
            }

            .metrics-card {
                padding: 25px;
            }
        }
/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .dashboard {
    margin-top: 40px;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 60px 20px;
  }

  .dashboard {
    padding: 26px;
  }
}
/* MOBILE */
@media (max-width: 600px) {
  .chris {
    padding: 55px 26px;
    margin: 70px 16px;
  }

  .chris-description {
    font-size: 0.95rem;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .process-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 520px) {
  .process-container {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 64px 26px 36px;
  }
}

@media (max-width: 768px) {
  .choose-container {
    gap: 24px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .choose-item {
    padding: 34px 26px;
  }

  .choose-title {
    font-size: 1.25rem;
  }
}


/* Tablet */
@media (max-width: 768px) {
  .choose {
    margin: 70px auto 60px;
  }

  .choose .title {
    line-height: 1.25;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .choose {
    margin: 60px auto 50px;
  }

  .choose .description {
    line-height: 1.7;
  }
}
