/* =========================
   THEME VARIABLES
========================= */

:root {

  --bg: #f8fafc;
  --surface: #ffffff;

  --text: #111827;
  --muted: #6b7280;

  --border: #e5e7eb;

  --primary: #111827;
  --primary-text: #ffffff;

  --accent: #2563eb;

}

body.dark {

  --bg: #0a0a0a;
  --surface: #111111;

  --text: #eaeaea;
  --muted: #aaaaaa;

  --border: #1f1f1f;

  --primary: #ffffff;
  --primary-text: #000000;

  --accent: #60a5fa;

}

/* =========================
   BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;

    background-image:

        linear-gradient(
            rgba(255,255,255,.03) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.03) 1px,
            transparent 1px
        );

}

/* =========================
   CONTAINER
========================= */

.container {
  width: 92%;
  max-width: 1100px;
  margin: auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

body.dark .site-header {
  background: rgba(10,10,10,.85);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 18px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.theme-toggle {

  margin-left: 16px;

  width: 40px;
  height: 40px;

  border-radius: 50%;

  border: 1px solid var(--border);

  background: var(--surface);

  color: var(--text);

  cursor: pointer;

}

.theme-toggle:hover {
  transform: scale(1.05);
}

/* =========================
   HERO
========================= */

.hero,
.about-hero,
.contact-hero {
  text-align: center;
  padding: 60px 0 30px;
}

.hero {

    position: relative;
}

.hero::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: -250px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(124,58,237,.12),
            transparent 70%
        );

    filter: blur(60px);

    z-index: -1;
}

.hero-title {
  font-size: 42px;
  margin: 10px 0;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 600px;
  margin: auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.gradient-text {
  background: linear-gradient(
    90deg,

            #4f46e5 0%,
            #7c3aed 30%,
    var(--accent)60%,
    var(--text)100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   TOOLBAR
========================= */

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

#searchInput {

  flex: 1;
  min-width: 220px;

  padding: 12px 16px;

  border-radius: 12px;

  border: 1px solid var(--border);

  background: var(--surface);

  color: var(--text);

  outline: none;

}

#searchInput:focus {
  border-color: var(--accent);
}

/* =========================
   FILTERS
========================= */

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {

  padding: 10px 16px;

  border-radius: 999px;

  border: 1px solid var(--border);

  background: var(--surface);

  color: var(--muted);

  cursor: pointer;

  font-size: 13px;
  font-weight: 500;

}

.filter-btn:hover {
  color: var(--text);
}

.filter-btn.active {

  background: var(--primary);

  color: var(--primary-text);

  border-color: var(--primary);

}

/* =========================
   GRID
========================= */

.grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(280px, 280px));


    justify-content: center;

    gap: 24px;

    padding: 30px 0 60px;
}

/* =========================
   CARDS
========================= */

.card {

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 14px;

  padding: 16px;

}

.card:hover {
  transform: translateY(-4px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.tag {

  font-size: 10px;

  padding: 4px 8px;

  border: 1px solid var(--border);

  border-radius: 999px;

  color: var(--muted);

}

.card h3 {
  margin: 12px 0 6px;
}

.card p {
  font-size: 14px;
  color: var(--muted);
}

.preview {

  width: 100%;

  border-radius: 10px;

  margin-top: 12px;

  border: 1px solid var(--border);

}

.project-card.hide {
  display: none;
}

/* =========================
   BUTTONS
========================= */

.buttons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.btn {

  flex: 1;

  text-align: center;

  padding: 10px;

  border-radius: 10px;

  text-decoration: none;

  font-size: 13px;

  border: 1px solid var(--border);

  background: var(--surface);

  color: var(--text);

}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {

    background:
        linear-gradient(
            135deg,
            #4f46e5 0%,
            /*#7c3aed 50%,*/
            #2563eb 100%
        );

    color: white;

    border: none;

    box-shadow:
        0 10px 25px rgba(79,70,229,.25);

    position: relative;

    overflow: hidden;
}

.btn.primary:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 35px rgba(79,70,229,.35);
}

.btn.primary::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );

    transition: .8s;
}

.btn.primary:hover::before {
    left: 120%;
}

/* =========================
   SECTIONS
========================= */

section {
  padding: 30px 0;
}

.center-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}

.section-title {
  font-size: 28px;
  margin-top: 10px;
}

/* =========================
   STATS
========================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.stat-card {

  background: var(--surface);

  border: 1px solid var(--border);

  padding: 16px;

  border-radius: 12px;

}

.stat-card h3 {
  font-size: 14px;
  color: var(--muted);
}

.stat-card p {
  margin-top: 6px;
}

/* =========================
   FORM
========================= */

.company-card {

  background: var(--surface);

  border: 1px solid var(--border);

  padding: 20px;

  border-radius: 14px;

}

.floating-input {
  position: relative;
  margin-bottom: 16px;
}

.floating-input input,
.floating-input textarea {

  width: 100%;

  padding: 14px;

  background: var(--bg);

  border: 1px solid var(--border);

  border-radius: 10px;

  color: var(--text);

  outline: none;

}

.floating-input label {

  position: absolute;

  left: 12px;

  top: 12px;

  color: var(--muted);

  font-size: 13px;

}

.floating-input:focus-within label {

  top: -10px;

  font-size: 11px;

  color: var(--accent);

}

/* =========================
   CTA
========================= */

.cta-box {

  text-align: center;

  background: var(--surface);

  border: 1px solid var(--border);

  padding: 40px;

  border-radius: 14px;

}

.cta-box h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cta-box p {
  color: var(--muted);
}

/* =========================
   FOOTER
========================= */

.site-footer {

  border-top: 1px solid var(--border);

  padding: 20px 0;

  text-align: center;

  color: var(--muted);

  margin-top: 40px;

}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

   .header-inner{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-direction:row;
    }

  .toolbar {
    flex-direction: column;
  }

}

@media (max-width: 600px) {

  .hero-title {
    font-size: 30px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    margin-left: 10px;
  }

}

/* =========================
   PROJECT PAGE LAYOUT
========================= */

.project-page {
    padding: 40px 0;
}

.project-layout {
    display: flex;
    gap: 30px;
}

/* LEFT 40% */
.project-info {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-header h1 {
    font-size: 32px;
    margin: 10px 0;
}

.project-desc {
    color: var(--muted);
}

/* QR */
.qr-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: 14px;
    text-align: center;
}

/* STORE BUTTONS */
.store-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.store-buttons img {
    height: 42px;
    width: auto;
    transition: transform 0.2s ease;
}

.store-buttons a:hover img {
    transform: scale(1.05);
}

.store-buttons {
    justify-content: flex-start;
}

/* RIGHT 60% */
.project-media {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* DEVICE WRAPPER */
.device-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* DEVICE MOCK */
.device {
    width: 220px;
    height: 420px;
    border-radius: 30px;
    background: #111;
    border: 2px solid var(--border);
    padding: 10px;
}

.device.web {
    width: 380px;
    height: 240px;
}

.screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   PROJECT PAGE LAYOUT
========================= */

.project-page {
    padding: 40px 0;
}

.project-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* =========================
   LEFT COLUMN
========================= */

.project-info {
    flex: 0 0 35%;
}

.project-header h1 {
    font-size: 32px;
    margin: 10px 0;
}

.project-desc {
    color: var(--muted);
}

.project-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
}

/* =========================
   QR BOX
========================= */

.qr-box {
    margin-top: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.qr-box img {
    width: 140px;
    margin-top: 10px;
}

/* =========================
   STORE BUTTONS
========================= */

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;

}

.store-buttons img {
    height: 44px;
    width: auto;
}

.store-buttons a:hover img {
    transform: scale(1.04);
}

/* =========================
   RIGHT COLUMN
========================= */

.project-preview {
    flex: 1;
    min-width: 0;

    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* =========================
   PHONE STACK
========================= */

.phone-stack {
    position: relative;
    width: 100%;
    height: clamp(320px, 55vw, 560px);

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

.phone {
    position: absolute;

    width: clamp(160px, 22vw, 260px);

    border-radius: 30px;
    overflow: hidden;

    background: #000;

    box-shadow:
        0 20px 60px rgba(0,0,0,.15),
        0 10px 25px rgba(0,0,0,.12);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.phone:hover {
    transform: scale(1.04) rotate(0deg) !important;
    z-index: 999 !important;
}

.phone img {
    width: 100%;
    display: block;
}

/* =========================
   WEB SLIDER
========================= */

.web-slider {
    position: relative;

    width: 100%;
    max-width: 800px;

    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08),
        0 8px 20px rgba(0,0,0,.05);
}

/* Fake browser bar */

.browser-bar {
    height: 44px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 0 16px;

    border-bottom: 1px solid var(--border);

    background: var(--bg);
}

.browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-bar span:nth-child(1) {
    background: #ff5f57;
}

.browser-bar span:nth-child(2) {
    background: #ffbd2e;
}

.browser-bar span:nth-child(3) {
    background: #28c840;
}

/* Slides */

.web-track {
    display: flex;
    transition: transform .4s ease;
}

.web-slide {
    min-width: 100%;
    padding: 12px;
}

.web-slide img {
    width: 100%;
    height: auto;

    max-height: 650px;

    object-fit: contain;

    display: block;

    border-radius: 10px;
}

/* Navigation */

.web-prev,
.web-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,.55);
    color: white;

    cursor: pointer;

    font-size: 22px;
    z-index: 5;
}

.web-prev {
    left: 12px;
}

.web-next {
    right: 12px;
}

.web-prev:hover,
.web-next:hover {
    background: rgba(0,0,0,.8);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .project-layout {
        flex-direction: column;
    }

    .project-info,
    .project-preview {
        width: 100%;
    }

    .project-preview {
        margin-top: 20px;
    }

    .phone-stack {
        height: 380px;
    }

    .web-slider {
        max-width: 100%;
    }

}

@media (max-width: 600px) {

    .project-page {
        padding: 20px 0;
    }

    .project-header h1 {
        font-size: 26px;
    }

    .phone {
        width: 170px;
    }

    .web-prev,
    .web-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

}

.project-card.hide {
    display: none !important;
}


.project-card {
    display: block !important;
    transition: all 0.25s ease;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.reset-btn {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.reset-btn:hover {
    background: #b91c1c;
}

/* TOOLBAR */
.toolbar {
  max-width:1100px;
  margin:40px auto;
  padding:20px;
  border:1px solid var(--border);
  border-radius:20px;
  background: var(--surface);
  backdrop-filter: blur(20px);
}

.category-tags {

    display:flex;
    flex-wrap:wrap;
    gap:6px;

    margin-top:12px;
}

.category-tag {

    padding:6px 10px;

    border-radius:999px;

    font-size:11px;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.08);
}


.background-orbs {

    position: fixed;

    inset: 0;

    pointer-events: none;

    overflow: hidden;

    z-index: -1;
}

.orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    opacity: .18;
}

.orb-1 {

    width: 450px;
    height: 450px;

    right: -100px;
    bottom: -100px;

    background:
        radial-gradient(
            circle,
            #7c3aed,
            transparent 70%
        );
}

.orb-2 {

    width: 350px;
    height: 350px;

    right: 250px;
    bottom: 150px;

    background:
        radial-gradient(
            circle,
            #2563eb,
            transparent 70%
        );
}


.trust-banner{
    padding:2rem 0;
    margin:4rem 0;
    overflow:hidden;
}

.trust-title{
    text-align:center;
    margin-bottom:2rem;
    color:#999;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.8rem;
}

.logo-marquee{
    overflow:hidden;
}

.logo-track{
    display:flex;
    gap:5rem;
    width:max-content;
    animation:scroll 30s linear infinite;
}

.logo-track img{
    height:40px;
    opacity:.7;
    filter:grayscale(100%);
}

.logo-track img:hover{
    opacity:1;
    filter:none;
}

@keyframes scroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:4rem;
    margin-top:3rem;
}

.stat h3{
    font-size:2rem;
    margin:0;
}

.portfolio-layout {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 2rem;
    align-items: start;
    margin-top: 3rem;
}

.filters-sidebar {
    position: sticky;
    top: 100px;
}

.filter-card {
    border-radius: 10px;
    padding: 2rem;
    border: 0.2px solid #ececec;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.filter-card h3 {
    margin-bottom: 1rem;
}

#searchInput {
    width: 100%;
    margin-bottom: 1.5rem;
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-label {
    display: block;
    font-weight: 600;
    margin-bottom: .75rem;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.projects-content {
    width: 100%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(320px,1fr)
    );
    gap: 1.5rem;
}

.project-card {
    height: 100%;
}

/* Tablet */

@media (max-width: 992px) {

    .portfolio-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: relative;
        top: auto;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .hero-title {
        font-size: 2rem;
    }

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

    .filter-card {
        padding: 1.25rem;
    }
}


.construction-box {
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.construction-gif {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
    opacity: 0.9;
}

.construction-box h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.construction-box p {
    font-size: 14px;
    opacity: 0.7;
}

.modal {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.modal-content {
    background:var(--surface);
    padding:25px;
    border-radius:14px;
    text-align:center;
    width:320px;
}

.modal-icon {
    font-size:40px;
    margin-bottom:10px;
}

.subscribe-box {
    margin-top:20px;
    padding:18px;
    border-radius:12px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.1);
    text-align:center;
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    color: inherit;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

/* =========================
   FORM SYSTEM (GLOBAL)
========================= */

form {
    width: 100%;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    color: #111;
    transition: all 0.2s ease;
    outline: none;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

/* Focus state */
input:focus,
textarea:focus,
select:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

/* Labels */
label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Form groups */
.form-group {
    margin-bottom: 16px;
}

/* Buttons */
button,
input[type="submit"] {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover,
input[type="submit"]:hover {
    background: #333;
}

/* Secondary button */
.btn-secondary {
    background: transparent;
    border: 1px solid #ddd;
    color: #111;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

/* =========================
   DARK MODE SUPPORT
========================= */

html.dark input,
html.dark textarea,
html.dark select {
    background: #1f1f1f;
    border-color: #333;
    color: #fff;
}

html.dark label {
    color: #ccc;
}

html.dark button,
html.dark input[type="submit"] {
    /*background: #fff;*/
    color: #ffffff;
}

html.dark button:hover,
html.dark input[type="submit"]:hover {
    /*background: #ddd;*/
}

/* ==========================
   Website / Store Section
========================== */

.project-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:flex-start;
    gap:2rem;
    margin:2rem 0;
}

.stores-box{
    min-width:280px;
    padding:2rem;
    border-radius:16px;
    text-align:center;

    display:flex;
    flex-direction:column;
    gap:1rem;

    background:var(--card-bg,#fff);
    border:1px solid var(--border,#ddd);
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.stores-box h4{
    margin:0;
}

.store-button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.75rem;

    padding:14px 18px;

    border-radius:10px;

    text-decoration:none;
    font-weight:600;
    font-size:.95rem;

    transition:.25s ease;
}

.store-button i{
    font-size:1.3rem;
}

/* Light Mode */

.store-button{
    background:#111;
    color:#fff;
}

.store-button:hover{
    background:#222;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

/* Dark Mode */

@media (prefers-color-scheme: dark){

    .stores-box{
        background:#1c1c1c;
        border-color:#333;
        box-shadow:0 10px 30px rgba(0,0,0,.45);
    }

    .stores-box h4{
        color:#fff;
    }

    .store-button{
        background:#2d2d2d;
        color:#fff;
    }

    .store-button:hover{
        background:#3b3b3b;
    }
}


/*==================================================
    LAYOUT
==================================================*/

.project-links{

    display:flex;
    flex-wrap:wrap;

    gap:2rem;

    margin:2rem 0;

    align-items:stretch;

}

/*==================================================
    CARDS
==================================================*/

.qr-box,
.stores-box,
.subscribe-box{

    flex:1;
    min-width:300px;

    padding:2rem;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.25s ease;

}

.qr-box:hover,
.stores-box:hover,
.subscribe-box:hover{

    transform:translateY(-4px);

}

/*==================================================
    HEADINGS
==================================================*/

.qr-box h4,
.stores-box h4,
.subscribe-box h4{

    margin:0 0 .75rem;

    color:var(--text);

    font-size:1.2rem;

}

.qr-box p,
.stores-box p,
.subscribe-box p{

    color:var(--text-light);

    line-height:1.6;

    margin-bottom:1.5rem;

}

/*==================================================
    QR CARD
==================================================*/

.qr-box{

    text-align:center;

}

.qr-box img{

    width:170px;

    height:170px;

    display:block;

    margin:1.5rem auto;

    background:#fff;

    padding:12px;

    border-radius:14px;

}

/*==================================================
    STORE BOX
==================================================*/

.stores-box{

    display:flex;

    flex-direction:column;

    gap:1rem;

}

.store-button{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:.8rem;

    width:100%;

    padding:15px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

     background: linear-gradient(
    90deg,

            #4f46e5 0%,
            #7c3aed 30%,
    var(--accent)60%,
    var(--text)100%
  );


    transition:.25s ease;

}

.store-button i{

    font-size:1.25rem;

}

.store-button:hover{

    background: linear-gradient(
    90deg,

            #4f46e5 0%,
            #7c3aed 30%,
    var(--accent)60%,
    var(--text)100%
  );


    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(37,99,235,.25);

}

/*==================================================
    SUBSCRIBE
==================================================*/

.subscribe-box{

    margin-top:2rem;

}

.subscribe-box form{

    display:flex;

    flex-direction:column;

    gap:1rem;

}

.subscribe-box input[type="email"]{

    width:100%;

    padding:14px 16px;

    border-radius:12px;

    border:1px solid var(--border);

    background:var(--surface-alt);

    color:var(--text);

    transition:.2s;

}

.subscribe-box input[type="email"]:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(37,99,235,.15);

}

/*==================================================
    PLATFORM CHIPS
==================================================*/

.platform-list{

    display:flex;

    flex-wrap:wrap;

    gap:.75rem;

    justify-content:center;

    margin:1rem 0;

}

.platform-option{

    position:relative;

    cursor:pointer;

}



.platform-option span{

    display:block;

    padding:.8rem 1.25rem;

    border-radius:999px;

    background:var(--surface-alt);

    border:1px solid var(--border);

    color:var(--text);

    font-size:.9rem;

    font-weight:500;

    transition:.2s;

    user-select:none;

}

.platform-option:hover span{

    border-color:var(--primary);

    transform:translateY(-1px);

}

.platform-option input:checked + span{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

}

/*==================================================
    SUBMIT BUTTON
==================================================*/

.subscribe-box button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:12px;

    background: linear-gradient(
    90deg,

            #4f46e5 0%,
            #7c3aed 30%,
    var(--accent)60%,
    var(--text)100%
  );


    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.subscribe-box button:hover{

    background:var(--primary-hover);

    transform:translateY(-2px);

}

/*==================================================
    MOBILE
==================================================*/

@media (max-width:768px){

    .project-links{

        flex-direction:column;

    }

    .qr-box,
    .stores-box,
    .subscribe-box{

        min-width:100%;

    }

    .platform-list{

        justify-content:flex-start;

    }

    .store-button{

        font-size:.9rem;

    }

}