/*
Theme Name: CubeTech Innovations
Theme URI: https://cubetech.local/
Author: CubeTech Development Team
Author URI: https://cubetech.local/
Description: A custom WordPress theme for CubeTech Innovations landing page.
Version: 1.0.0
License: GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cubetech
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ==========================================================================
   Design tokens
   ========================================================================== */

:root{
	--color-primary:#007bff;
	--color-primary-dark:#0069d6;
	--color-secondary:#0c52a1;
	--color-heading:#263445;
	--color-text:#333;
	--color-muted:#6c7a89;
	--color-border:#ececec;

	--bg:#fff;
	--bg-soft:#f6f9fc;
	--font-sans:'Poppins',sans-serif;
	--font-serif:'Merriweather',Georgia,serif;

	--radius-sm:10px;
	--radius-md:12px;
	--radius-lg:22px;
	--radius-pill:999px;

	--shadow-soft:0 18px 36px rgba(0,0,0,.12);
	--shadow-hero:0 28px 70px rgba(15,23,42,.16);

	--ease:cubic-bezier(0.22,0.9,0.32,1);
	--t-fast:260ms;
	--t:520ms;
}

/* ==========================================================================
   Base
   ========================================================================== */

*{margin:0;padding:0;box-sizing:border-box;}
html,body{height:100%;}
html{scroll-behavior:smooth;}
body{
	font-family:var(--font-sans);
	line-height:1.6;
	color:var(--color-text);
	background:var(--bg);
}
img{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;}

article,aside,figure,blockquote{display:block;}
blockquote p{margin-bottom:0;}

.sr-only{
	position:absolute;
	width:1px;height:1px;
	padding:0;margin:-1px;
	overflow:hidden;
	clip:rect(0,0,0,0);
	white-space:nowrap;
	border:0;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container,
.align-hero,
.page-container{
	width:90%;
	max-width:1240px;
	margin:0 auto;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50; /* ensure header stays on top of hero image */
  padding: 22px 0 0;
}

.header-inner{
  width: calc(100% - 64px);
  max-width: 1340px;
  margin: 0 auto;
  position: relative;

  background: #fff;
  border-radius: 10px;
  padding: 10px 20px 10px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 10px 30px rgba(20, 40, 80, 0.10);
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-logo{
  width: 28px;
  height: auto;
  display: block;
}

.brand-text{
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #0a76dc;
}

.primary-nav{
  display: flex;
  align-items: center;
  gap: 36px;
}

.primary-nav a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 2px;

  font-size: 13px;
  font-weight: 500;
  color: #334a68;

  transition: color var(--t-fast) ease;
}

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

.primary-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background: var(--color-primary);
  transition: width var(--t) var(--ease);
}

.primary-nav a:hover::after{
  width:100%;
}

.site-header .primary-nav > li{
  list-style: none;
}

.site-header .primary-nav .nav-dd{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-header .primary-nav .nav-dd-trigger{
  padding-right: 14px;
}

.site-header .primary-nav .nav-dd-trigger span[aria-hidden="true"]{
  display: none;
}

.site-header .primary-nav .nav-dd-trigger::before{
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-58%) rotate(45deg);
  opacity: 0.72;
  transition: transform 180ms ease;
}

.site-header .primary-nav .nav-dd.is-open .nav-dd-trigger::before{
  transform: translateY(-38%) rotate(-135deg);
}

.site-header .primary-nav .nav-dd-menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 214px;
  padding: 8px 0;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #edf2f9;
  box-shadow: 0 16px 34px rgba(20, 40, 80, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 30;
}

.site-header .primary-nav .nav-dd-menu .nav-dd-item{
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: #6e7f99;
  padding: 9px 14px;
  line-height: 1.2;
}

.site-header .primary-nav .nav-dd-menu .nav-dd-item::after{
  display: none;
}

.site-header .primary-nav .nav-dd-menu .nav-dd-item:hover,
.site-header .primary-nav .nav-dd-menu .nav-dd-item:focus-visible{
  color: #2f4f79;
  background: #f4f8ff;
}

@media (min-width: 769px){
  .site-header .primary-nav .nav-dd.is-open .nav-dd-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.nav-cta{
  min-height: 34px;
  padding: 9px 16px !important;
  border-radius: 9px;
  background: linear-gradient(180deg, #20a9ff 0%, #1498f5 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(20, 152, 245, 0.22);
  border: 1px solid rgba(255,255,255,0.18);
}

.nav-cta::after{ display:none; }
.nav-cta:hover{
  color:#fff !important;
  background: linear-gradient(180deg, #1ba0f2 0%, #1089e7 100%);
  box-shadow: 0 8px 18px rgba(20, 152, 245, 0.24);
}

/* Hamburger */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  align-items:center;
  justify-content:center;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#2f3b4a;
  border-radius:2px;
}

.nav-toggle span + span{ margin-top:5px; }

@media (max-width: 768px){
  .site-header{
    padding: 14px 0 0;
  }

  .header-inner{
    width: calc(100% - 24px);
    padding: 10px 12px;
    min-height: 56px;
  }

  .brand-text{
    font-size: 13px;
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle{ display:inline-flex; flex-direction:column; }

  .primary-nav{
    display:none;
    position:absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;

    background:#fff;
    border-radius:14px;
    padding: 14px 16px;

    flex-direction:column;
    align-items:flex-start;
    gap: 12px;

    box-shadow: 0 14px 40px rgba(20, 40, 80, 0.12);
  }

  .primary-nav.is-open{ display:flex; }
  .primary-nav a::after{ display:none; }
  .primary-nav a{
    width:100%;
    padding: 8px 2px;
  }
  .primary-nav .nav-cta{
    width:auto;
    align-self:flex-start;
    margin-top:4px;
  }

  .site-header .primary-nav .nav-dd{
    width: 100%;
    display: block;
  }

  .site-header .primary-nav .nav-dd-trigger{
    width: 100%;
    justify-content: flex-start;
    padding-right: 24px;
  }

  .site-header .primary-nav .nav-dd-trigger::before{
    right: 4px;
  }

  .site-header .primary-nav .nav-dd-menu{
    position: static;
    min-width: 0;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0 0 0 10px;
    max-height: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    pointer-events: none;
    transition: max-height 220ms ease;
  }

  .site-header .primary-nav .nav-dd.is-open .nav-dd-menu{
    max-height: 320px;
    pointer-events: auto;
  }

  .site-header .primary-nav .nav-dd-menu .nav-dd-item{
    font-size: 13px;
    color: #5f718d;
    padding: 8px 8px;
  }
}


/* ==========================================================================
   Hero
   ========================================================================== */

.hero{
  position: relative;
  background: #f6f8fb;
  min-height: 100vh;     /* make hero first view */
  overflow: hidden;
  padding: 108px 0 52px;
}

.hero-bg{
  position:absolute;
  top: 0;
  right: 0;
  width: 50.2%;
  height: 100%;
  z-index: 1;
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;

  border-radius: 0 0 0 190px;
}

/* soft blend from left to right */
.hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: none;
}

.hero-wrap{
  position: relative;
  z-index: 10; /* card above image */
  width: calc(100% - 64px);
  max-width: 1340px;
  margin: 0 auto;

  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-height: 600px;
}

.hero-card{
  position: relative;
  width: min(735px, calc(100% - 24px));
  min-height: 432px;
  padding: 56px 48px 54px;
  background: linear-gradient(
    90deg,
    rgba(245,247,251,0.97) 0%,
    rgba(245,247,251,0.97) 76%,
    rgba(255,255,255,0.34) 92%,
    rgba(255,255,255,0.22) 100%
  );
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(12px) saturate(115%);
  -webkit-backdrop-filter: blur(12px) saturate(115%);
  overflow: hidden;
  border-radius: 14px;
  box-shadow:
    0 14px 34px rgba(25, 44, 76, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.35);
  margin-left: 34px;
}

@media (min-width: 1100px){
  .hero-card{
    transform: translate(14px, 12px);
  }
}

.hero-card::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:140px;
  height:100%;
  border-radius:0 14px 14px 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.02) 0%,
    rgba(255,255,255,0.10) 48%,
    rgba(255,255,255,0.18) 100%
  );
  border-left: 1px solid rgba(255,255,255,0.28);
  pointer-events:none;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,0.16), transparent 38%),
    linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 34%);
  pointer-events:none;
}

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

.hero-title{
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.3px;
  color: #2f4365;
  margin: 0 0 14px;
}

.hero-subtitle{
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.28;
  color: #1f86e5;
  margin: 0 0 26px;
}

.hero-desc{
  font-size: 16px;
  line-height: 1.72;
  color: #385071;
  margin: 0 0 40px;
  max-width: 610px;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 980px){
  .hero{
    padding: 98px 0 64px;
    min-height: auto;
  }

  .hero-bg{
    width: 100%;
    opacity: .16;
    top: 0;
    height: 100%;
  }

  .hero-bg img{
    border-radius: 0;
    box-shadow: none;
  }

  .hero-wrap{
    width: calc(100% - 32px);
    min-height: auto;
    justify-content:center;
  }

  .hero-card{
    margin: 0 auto;
    transform: none;
    width: min(735px, 100%);
    min-height: auto;
    padding: 34px 24px;
    background: rgba(255,255,255,0.95);
  }

  .hero-card::before,
  .hero-card::after{ display:none; }

  .hero-title{ font-size: 31px; }
  .hero-subtitle{ font-size: 22px; margin-bottom: 16px; }
  .hero-desc{ font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
}

@media (max-width: 640px){
  .hero{
    padding: 92px 0 52px;
  }

  .hero-wrap{
    width: calc(100% - 20px);
  }

  .hero-card{
    border-radius: 12px;
    padding: 28px 18px 24px;
  }

  .hero-title{
    font-size: 26px;
    margin-bottom: 10px;
  }

  .hero-subtitle{
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .hero-desc{
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .hero-actions{
    gap: 10px;
  }

  .hero-actions .btn{
    min-height: 42px;
    padding: 11px 18px;
    font-size: 12px;
  }
}
/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 0;
  transition:
    transform var(--t) var(--ease),
    box-shadow var(--t) var(--ease),
    background-color var(--t-fast) ease,
    color var(--t-fast) ease,
    border-color var(--t-fast) ease;
}

.btn-primary {
  background: linear-gradient(180deg, #19a8ff 0%, #088df2 100%);
  color: #fff;
  box-shadow: 0 9px 18px rgba(8, 141, 242, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #1498ea 0%, #0676cc 100%);
  box-shadow: 0 12px 24px rgba(8, 141, 242, 0.2);
}

.btn-outline {
  background: transparent;
  color: #7a8092;
  border: 1px solid #9aa4ba;
  box-shadow: none;
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: #7d89a2;
  color: #223348;
}

/* ==========================================================================
   Product / QR
   ========================================================================== */

.product-section,
.qr-section{
	padding:22px 0;
	background:#fff;
}

.product-section{
	padding-top:18px;
	background:#fff;
}

.product-grid{
	display:grid;
	grid-template-columns:1.08fr 1fr;
	gap:42px;
	align-items:start;
}

.qr-grid{
	display:grid;
	grid-template-columns:1fr 1.18fr;
	gap:40px;
	align-items:start;
}

.product-text h2{
	font-family:var(--font-serif);
	font-size:22px;
	font-weight:700;
	line-height:1.28;
	color:#1f6fc7;
	margin:0 0 6px;
}

/* ======================================================================
  Our Products 
  ====================================================================== */
.our-products{
    padding-block-start:170px;
    padding-block-end:48px;
    background:#fff;
}

.our-products > .container{
    display:flex;
    justify-content:center;
    align-items:center;
}

.our-products__inner{
    width:100%;
    max-width:820px;
    margin:0;
    text-align:center;
    padding-inline:8px;
}

.our-products__title{
    font-family:var(--font-serif);
    color:#344a70;
    font-size:46px;
    line-height:1.05;
    font-weight:900;
    margin:0 0 12px;
    -webkit-font-smoothing:antialiased;
}

.our-products__subtitle{
    margin:0 auto;
    max-width:720px;
    font-size:15px;
    line-height:1.75;
    font-weight:400;
    color:#7a87a2;
    margin-bottom: 8px;
}

@media (max-width: 768px){
    .our-products{
        padding-block-start:80px;
        padding-block-end:32px;
    }

    .our-products__title{
        font-size:32px;
    }

    .our-products__subtitle{
        font-size:14px;
        line-height:1.6;
    }
}

.word-black{color:#000;}
.product-text .word-black{color:#334a70;}

.product-text h3{
	font-family:var(--font-serif);
	font-size:20px;
	font-weight:700;
	line-height:1.3;
	color:#334a70;
	margin:0 0 22px;
}

.product-text p,
.qr-text p{
	font-size:15px;
	line-height:1.72;
	font-weight:400;
	color:#7a86a1;
	margin:0 0 14px;
}

.product-text{
	padding-top:0;
}

.product-text p{
	max-width:610px;
}

.product-text p:last-of-type{
	margin-bottom:22px;
}

.product-image img,
.qr-image img{
	width:100%;
	max-height:292px;
	object-fit:cover;
	border-radius:14px;
	box-shadow:0 10px 24px rgba(24, 38, 74, 0.14);
	transition:transform 980ms var(--ease), box-shadow 980ms var(--ease);
	will-change:transform,box-shadow;
}

.product-image img:hover,
.qr-image img:hover{
	transform:translateY(-4px) scale(1.005);
	box-shadow:0 18px 36px rgba(24, 38, 74, 0.12);
}

.product-demo-btn{
	min-height:30px;
	padding:9px 15px;
	font-size:12px;
	font-weight:500;
	border-radius:8px;
	letter-spacing:0;
	box-shadow:0 5px 10px rgba(8,141,242,.18);
}

.link-more{
	color:#1388ef;
	font-weight:500;
	font-size:14px;
	display:inline-flex;
	align-items:center;
	gap:8px;
	line-height:1.2;
	transition:color var(--t-fast) ease;
}
.link-more__icon{
	flex:none;
	transform:translateX(0);
	transition:transform 220ms ease;
}

.link-more:hover{
	color:#0b72cc;
}

.link-more:hover .link-more__icon{
	transform:translateX(3px);
}

.qr-text{
	padding-top:0;
}

.qr-text p{
	max-width:610px;
}

@media (max-width: 992px){
  .product-grid,
  .qr-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .product-section{
    padding-top: 8px;
  }

  .product-text,
  .qr-text{
    text-align:left;
    padding-top:0;
  }

  .product-image,
  .qr-image{
    order: 2;
  }

  .qr-text{
    order: 2;
  }

  .qr-image{
    order: 1;
  }

  .product-image img,
  .qr-image img{
    max-height: 340px;
  }
}

/* ========================================
   FEATURES CARDS (3 cards)
======================================== */

.features-cards{
  padding: 70px 0 110px;
  background: #fff;
}

.features-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.feature-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 26px 26px 24px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  border-color: rgba(0,123,255,0.18);
}

.feature-icon{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0b7cff;
  color: #fff;
  margin-bottom: 16px;
}

.feature-title{
  font-size: 17px;
  font-weight: 700;
  color: #2f3b4a;
  margin: 0 0 10px;
}

.feature-desc{
  font-size: 14px;
  line-height: 1.75;
  color: #7a8794;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px){
  .features-grid{
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ABOUT SECTION 
======================================== */

.about-section{
  background: #f6f8fb;
  padding: 118px 0 126px;
  text-align: center;
}

.about-title{
  font-size: 52px;
  line-height: 1.08;
  font-weight: 700;
  color: #1688ee;
  margin: 0 0 58px;
}

/* Image Row */
.about-images-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1028px;
  margin: 0 auto 70px;
  align-items: center;
}

.about-images-row img{
  width: 100%;
  height: 182px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.10);
  transition: transform 280ms ease, box-shadow 280ms ease, filter 280ms ease;
  will-change: transform;
}

.about-images-row img:nth-child(1){
  transform: translateY(10px) rotate(-2.2deg);
}

.about-images-row img:nth-child(2){
  transform: translateY(-6px) rotate(1.6deg);
}

.about-images-row img:nth-child(3){
  transform: translateY(6px) rotate(-1.4deg);
}

.about-images-row img:nth-child(4){
  transform: translateY(-8px) rotate(2deg);
}

.about-images-row img:hover,
.about-images-row img:focus-visible{
  transform: translateY(0) rotate(0deg);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.13);
  filter: saturate(1.02);
}

/* Centered Text */
.about-text-centered{
  max-width: 980px;
  margin: 0 auto 76px;
}

.about-text-centered p{
  max-width: 940px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.85;
  color: #6f7b92;
  font-weight: 400;
  letter-spacing: 0.1px;
}

.about-text-centered p:nth-child(2){
  max-width: 820px;
}

.about-text-centered p:last-child{
  margin-bottom: 0;
}

/* Mission Vision Grid */
.mv-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  max-width: 1030px;
  margin: 0 auto;
}

.mv-box{
  background: #fff;
  padding: 34px 34px 30px;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  text-align: left;
}

.mv-box h3{
  font-size: 22px;
  font-weight: 700;
  color: #1688ee;
  margin: 0 0 14px;
}

.mv-box p{
  font-size: 15px;
  line-height: 1.8;
  color: #6f7b92;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px){
  .about-images-row{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 44px;
  }

  .about-images-row img{
    height: 170px;
    transform: none !important;
  }

  .about-title{
    font-size: 40px;
    margin-bottom: 34px;
  }

  .about-text-centered{
    margin-bottom: 48px;
  }

  .about-text-centered p{
    font-size: 15px;
    line-height: 1.75;
  }

  .mv-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========================================
   TEAM SECTION
======================================== */

.team-section{
  background: #fff;
  padding: 120px 0 96px;
}

.team-title{
  text-align: center;
  font-family: var(--font-sans);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.06;
  color: #2d4d76;
  letter-spacing: -0.02em;
  margin: 0 0 52px;
}

/* Desktop layout */
.team-slider{
  position: relative;
}

.team-track{
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: stretch;
}

.team-card{
  width: 236px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dde4ee;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
  cursor: pointer;
}

.team-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.team-card img{
  width: 100%;
  height: 292px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  margin-bottom: 0;
  display: block;
}

.team-card h4{
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.12;
  color: #2a486f;
  margin: 0;
  padding: 14px 12px 1px;
  background: #fff;
}

.team-role{
  display: block;
  padding: 0 12px 10px;
  min-height: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.04;
  color: #148cf0;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 2px 0 0;
}

.team-card:nth-child(-n+3) .team-role{
  margin-top: 6px;
}

/* Hide arrows + dots on desktop */
.slider-arrow,
.slider-dots{
  display: none;
}

/* Mobile carousel layout */
@media (max-width: 768px){
  .team-section{
    padding: 78px 0 64px;
  }

  .team-title{
    font-size: 33px;
    margin-bottom: 34px;
  }

  .team-slider{
    overflow: hidden;
    max-width: 360px;
    margin: 0 auto;
    padding: 0 18px;
  }

  .team-track{
    display: flex;
    justify-content: flex-start;
    gap: 0;
    transition: transform 420ms var(--ease);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }

  .team-card{
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  }

  .team-card img{
    height: 276px;
  }

  .team-card h4{
    font-size: 16px;
    line-height: 1.12;
    padding-top: 14px;
    padding-bottom: 1px;
  }

  .team-role{
    display: block;
    min-height: 0;
    font-size: 10px;
    line-height: 1.04;
    padding-bottom: 10px;
    margin-top: 2px;
  }

  .team-card:nth-child(-n+3) .team-role{
    margin-top: 6px;
  }

  .slider-arrow{
    display: inline-flex;
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #e6ebf3;
    background: #fff;
    color: #6f7b92;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
    z-index: 3;
  }

  .slider-arrow.prev{ left: 0; }
  .slider-arrow.next{ right: 0; }

  .slider-arrow:disabled{
    opacity: .45;
    cursor: default;
  }

  .slider-dots{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }

  .slider-dots .dot{
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #cfd7e5;
    transition: width 220ms ease, background-color 220ms ease;
  }

  .slider-dots .dot.active{
    width: 28px;
    background: #1688ee;
  }
}

/* ========================================
   EXPERIENCE / TESTIMONIALS
======================================== */

.experience-section{
  background: #f4f6f9; /* same light gray as about */
  padding: 110px 0 108px;
  text-align: center;
}

.experience-header h2{
  font-family: var(--font-sans);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  color: #2d4d76;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.experience-sub{
  max-width: 680px;
  margin: 0 auto 52px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0;
  color: #7a8794;
}

.experience-highlight{
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.28;
  color: #1588ee;
  max-width: 700px;
  margin: 0 auto 16px;
}

.experience-desc{
  max-width: 700px;
  margin: 0 auto 58px;
  font-size: 15px;
  color: #6c7a89;
  line-height: 1.72;
  font-weight: 400;
}

/* testimonial layout */

.testimonials{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.testimonial{
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.testimonial img{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}

.testimonial h4{
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  color: #344a70;
  margin: 0 0 6px;
}

.testimonial-role{
  font-size: 11px;
  font-weight: 600;
  color: #8b97a6;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.testimonial-quote{
  margin: 0;
}

.testimonial-quote p{
  font-size: 14px;
  color: #79859b;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0;
  font-style: italic;
  display: block;
  padding: 0;
  margin: 0;
}

.testimonial-quote p::before,
.testimonial-quote p::after{
  color: #8f9db0;
  font-size: 0.95em;
  line-height: 1;
}

.testimonial-quote p::before{
  content: "\201C";
  margin-right: 0.08em;
}

.testimonial-quote p::after{
  content: "\201D";
  margin-left: 0.08em;
}

/* Responsive */

@media (max-width: 1200px){
  .experience-header h2{ font-size: 50px; }
  .experience-sub{ font-size: 16px; }
  .experience-highlight{ font-size: 23px; }
  .experience-desc{ font-size: 15px; }

  .testimonial h4{ font-size: 16px; }
  .testimonial-quote p{ font-size: 14px; }
}

@media (max-width: 768px){
  .experience-section{
    padding: 80px 0 78px;
  }

  .testimonials{
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .experience-header h2{
    font-size: 33px;
  }

  .experience-sub{
    font-size: 15px;
    line-height: 1.66;
    margin-bottom: 44px;
  }

  .experience-highlight{
    font-size: 20px;
    line-height: 1.28;
    margin-bottom: 14px;
  }

  .experience-desc{
    font-size: 15px;
    line-height: 1.66;
    margin-bottom: 44px;
  }

  .testimonial h4{
    font-size: 16px;
  }

  .testimonial-quote p{
    font-size: 14px;
    line-height: 1.75;
  }
}

@media (max-width: 480px){
  .experience-header h2{ font-size: 33px; }
  .experience-sub{ font-size: 14px; }
  .experience-highlight{ font-size: 19px; }
  .experience-desc{ font-size: 14px; }

  .testimonial img{
    width: 82px;
    height: 82px;
  }

  .testimonial h4{
    font-size: 15px;
  }

  .testimonial-role{
    font-size: 10px;
  }

  .testimonial-quote p{
    font-size: 13px;
  }
}

/* ==========================================================================
   Contact 
   ========================================================================== */

.contact-wrap{
  padding: 120px 0 140px;
  background: #fff;
}

.contact-top{
  text-align: center;
  margin: 0 auto 60px;
  max-width: 860px;
}

.contact-top__title{
  font-size: 50px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #2f3b4a; 
  margin: 0 0 18px;
}

.contact-top__subtitle{
  font-size: 16px;
  line-height: 1.9;
  color: #7a8794;
  margin: 0 auto;
  max-width: 680px;
}

.contact-card{
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
  padding: 54px 56px 50px;
}

.contact-card__title{
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #2f3b4a;
  margin: 0 0 10px;
}

.contact-card__hint{
  text-align: center;
  color: #7a8794;
  font-size: 14px;
  margin: 0 0 38px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.field--full{ grid-column: 1 / -1; }

.field label{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #7a8794;
  margin: 0 0 10px;
}

.input-icon{
  position: relative;
}

.input-icon input,
.input-icon select,
.custom-select-trigger{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e6edf6;
  padding: 12px 40px 12px 0;
  font-size: 14px;
  color: #2f3b4a;
  outline: none;
  transition: border-color 220ms ease;
}

.input-icon select{
  appearance: none;
  -webkit-appearance: none;
}

.custom-select{
  position: relative;
}

.custom-select-native{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger{
  position: relative;
  text-align: left;
  cursor: pointer;
  padding-right: 68px;
}

.custom-select-trigger::after{
  content: "";
  position: absolute;
  right: 36px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.8px solid #7a8794;
  border-bottom: 1.8px solid #7a8794;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-trigger::after{
  transform: translateY(-35%) rotate(-135deg);
}

.custom-select-list{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #d6deea;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
  max-height: 240px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 30;
  display: none;
}

.custom-select.is-open .custom-select-list{
  display: block;
}

.custom-select-list [role="option"]{
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1.2;
  color: #33445d;
  cursor: pointer;
}

.custom-select-list [role="option"].is-active{
  background: #0b7cff;
  color: #fff;
}

.custom-select-list [role="option"]:not(.is-active):hover{
  background: #e9f2ff;
}

.input-icon .icon{
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.55;
  pointer-events: none;
}

.input-icon input:focus,
.input-icon select:focus,
.custom-select-trigger:focus,
.custom-select.is-open .custom-select-trigger{
  border-bottom-color: #0b7cff;
}

.custom-select.is-invalid .custom-select-trigger{
  border-bottom-color: #d53f3f;
}

.field textarea{
  width: 100%;
  border: 2px solid #e6edf6;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #2f3b4a;
  outline: none;
  transition: border-color 220ms ease;
  resize: vertical;
}

.field textarea:focus{
  border-color: #0b7cff;
}

.char-row{
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.char-count{
  font-size: 12px;
  color: #7a8794;
}

.contact-actions{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.contact-btn{
  border: 0;
  cursor: pointer;
  background: #0b7cff;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 13px;
  padding: 16px 34px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(11,124,255,0.18);
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

.contact-btn:hover{
  transform: translateY(-2px);
  background: #096fd6;
  box-shadow: 0 24px 52px rgba(11,124,255,0.16);
}

@media (max-width: 992px){
  .contact-top__title{ font-size: 40px; }
  .contact-card{ padding: 40px 26px 34px; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
  .contact-top__title{ font-size: 33px; }
}

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

.footer{
  background:#e9eff5;
  border-top:3px solid #0b7cff;
  padding:70px 0 60px;
}

/* ========================================
   Back To Top Button
======================================== */

.back-to-top{
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1ea9ff 0%, #0d88ee 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(13, 136, 238, 0.22);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease, box-shadow 220ms ease;
}

.back-to-top span{
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover{
  box-shadow: 0 18px 34px rgba(13, 136, 238, 0.26);
}

.back-to-top:active{
  transform: translateY(1px) scale(0.98);
}

@media (max-width: 768px){
  .back-to-top{
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .back-to-top span{
    font-size: 20px;
  }
}

.footer-inner{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:70px;
  align-items:start;
}

/* left group */
.footer-left{
  display:flex;
  flex-direction:column;    
  align-items:flex-start;    
  gap:14px;
}

.footer-brand h4{
  margin:0;
  white-space:nowrap;        
  font-size:13px;
  font-weight:600;
  color:#263445;
}

.footer-social{
  display:flex;
  gap:10px;
}

.footer-social a{
  width:34px;
  height:34px;
  border-radius:8px;
  background:#fff;
  display:grid;
  place-items:center;
  color:#263445;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transition:transform .25s ease, background-color .25s ease, color .25s ease;
}

.footer-social a:hover{
  background:#0b7cff;
  color:#fff;
  transform:translateY(-2px);
}

/* newsletter */
.footer-newsletter{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:0;             
}

.footer-newsletter input{
  width:210px;
  height:36px;
  padding:0 12px;
  border:1px solid #dbe3ef;
  border-radius:6px;
  background:#fff;
  font-size:13px;
  outline:none;
}

.footer-newsletter button{
  height:36px;
  padding:0 18px;
  border:0;
  border-radius:6px;
  background:#0b7cff;
  color:#fff;
  font-weight:600;
  font-size:13px;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  box-shadow:0 10px 20px rgba(11,124,255,0.18);
}

.footer-newsletter button:hover{
  background:#096fd6;
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(11,124,255,0.14);
}

/* right links */
.footer-links{
  display:grid;
  grid-template-columns: 180px 180px 1fr;
  gap:70px;
}

.footer-col h5{
  font-size:13px;
  font-weight:700;
  color:#263445;
  margin:0 0 12px;
}

.footer-col ul{ list-style:none; margin:0; padding:0; }
.footer-col li{ margin:0 0 10px; }

.footer-col a{
  font-size:13px;
  color:#6b7a90;
  transition:color .2s ease;
}

.footer-col a:hover{ color:#0b7cff; }

/* responsive */
@media (max-width: 900px){
  .footer-inner{
    grid-template-columns:1fr;
    gap:34px;
  }

  .footer-left{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-links{
    grid-template-columns:1fr;
    gap:26px;
  }
}

/* Motion & Accessibility */
.reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1200ms var(--ease), transform 1200ms var(--ease);
  will-change: opacity, transform;
}

.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

:focus-visible{
  outline: 3px solid rgba(0,123,255,0.14);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive */
@media (max-width: 1024px){
  .experience-section{
    padding: 86px 40px 72px;
  }

  .contact-section{
    padding: 60px 40px;
  }

  .footer-links{
    gap: 40px;
  }
}

@media (max-width: 768px){
  .hero{
    padding: 120px 0 60px;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Header should scroll normally (no fixed/sticky) */
  .navbar{
    position: relative;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-flex{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
  }

  /* Mobile menu: hidden by default, opened by JS (.is-open) */
  .nav-toggle{
    display: inline-flex;
  }

  .nav-menu{
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0 18px;
  }

  .nav-menu.is-open{
    display: flex;
  }

  .hero-title{
    display: none;
  }

  .hero-subtitle{
    font-size: 24px;
  }

  .hero-desc{
    font-size: 14px;
  }

  .hero-buttons{
    flex-direction: row;
    gap: 14px;
  }

  .stats-section{
    padding: 60px 0;
  }

  .stats-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .product-section,
  .qr-section{
    padding: 30px 0;
  }

  .product-grid,
  .qr-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-text,
  .qr-text{
    text-align: center;
  }

  .product-image img,
  .qr-image img{
    max-height: 280px;
  }

  .about-section{
    padding: 80px 0;
  }

  .about-grid,
  .mv-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-images img{
    height: 250px;
    object-fit: cover;
  }

  .experience-section{
    padding: 68px 20px 72px;
  }

  .contact-section{
    padding: 60px 20px;
  }

  .testimonials{
    gap: 30px;
  }

  .testimonial{
    max-width: 250px;
  }

  .contact-form .row{
    flex-direction: column;
    gap: 15px;
  }

  .footer-container{
    flex-direction: column;
    gap: 30px;
  }

  .footer-links{
    flex-direction: column;
    gap: 25px;
  }

  .footer-newsletter{
    flex-direction: column;
  }

  .footer-left input{
    border-radius: 4px;
    margin: 10px 0;
  }

  .footer-newsletter button{
    border-radius: 4px;
  }
}

@media (max-width: 480px){
  .container,
  .align-hero,
  .page-container{
    padding: 0 15px;
  }

  .hero-subtitle{
    font-size: 20px;
  }

  .hero-desc{
    font-size: 13px;
    line-height: 1.7;
  }

  .btn{
    padding: 12px 22px;
    font-size: 12px;
  }

  .stat h2{
    font-size: 28px;
  }

  .stat p{
    font-size: 14px;
  }
  .product-text h2{
    font-size: 22px;
  }

  .product-text h3{
    font-size: 18px;
  }

  .product-text p,
  .qr-text p{
    font-size: 14px;
    line-height: 1.8;
  }

  .about-title{
    font-size: 26px;
  }

  .about-text p{
    font-size: 13px;
    line-height: 2;
  }
  .experience-header h2{
    font-size: 33px;
    font-family: var(--font-sans);
    font-weight: 600;
  }

  .experience-section .subtitle{
    font-size: 13px;
  }

  .testimonial img{
    width: 60px;
    height: 60px;
  }

  .testimonial h4{
    font-size: 14px;
  }

  .testimonial span{
    font-size: 11px;
  }
  .contact-section h2{
    font-size: 22px;
  }

  .contact-form input,
  .contact-form textarea{
    padding: 12px;
    font-size: 13px;
  }

  .contact-form button{
    padding: 10px 20px;
    font-size: 13px;
  }

  .contact-form .custom-select-trigger{
    padding: 12px 68px 12px 0;
    font-size: 13px;
  }

  .slider-dots{
    margin-top: 30px;
    gap: 10px;
  }

  .dot{
    width: 8px;
    height: 8px;
  }
}
#wpadminbar{
  display:none !important;
}
html{
  margin-top:0 !important;
}

/* ==========================================================================
   SnapServe Page
   ========================================================================== */

.snapserve-page .snapserve-hero{
	position: relative;
	width: 100%;
	min-height: 0;
	padding: 94px 0 72px;
	background:
		linear-gradient(135deg, rgba(27, 130, 209, 0.92) 0%, rgba(27, 130, 209, 0.8) 18%, rgba(27, 130, 209, 0.56) 38%, rgba(27, 130, 209, 0.24) 56%, rgba(27, 130, 209, 0) 72%),
		linear-gradient(135deg, rgba(34, 151, 226, 0.88) 0%, rgba(27, 130, 209, 0.84) 42%, rgba(34, 123, 205, 0.8) 68%, rgba(58, 137, 214, 0.74) 100%),
		url("assets/images/snapserve-hero-bg.jpg");
	background-position: left top, left top, center;
	background-repeat: no-repeat;
	background-size: auto, auto, cover;
	overflow: hidden;
}

.snapserve-page .snapserve-hero::before{
	content: "";
	position: absolute;
	inset: 0;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M15 9v12M9 15h12' stroke='%23ffffff' stroke-opacity='.2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E") 0 0/30px 30px repeat,
		linear-gradient(135deg, rgba(36, 147, 229, 0.24) 0%, rgba(36, 147, 229, 0.14) 26%, rgba(36, 147, 229, 0) 44%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(9, 58, 114, 0.05) 100%);
	opacity: 0.9;
	pointer-events: none;
}

.snapserve-page .snapserve-hero::after{
	content: "";
	position: absolute;
	right: -90px;
	bottom: -160px;
	width: 420px;
	height: 420px;
	border-radius: 44% 56% 50% 50%;
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.10) 20%, rgba(255, 255, 255, 0.00) 62%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(13, 54, 112, 0.22) 100%);
	opacity: 0.45;
	filter: blur(4px);
	transform: rotate(-22deg);
	pointer-events: none;
}

.snapserve-page .snapserve-hero__inner{
	position: relative;
	z-index: 1;
}

.snapserve-page .snapserve-hero__grid{
	display: grid;
	grid-template-columns: minmax(390px, 560px) minmax(0, 1fr);
	align-items: start;
	gap: 44px;
}

.snapserve-page .snapserve-hero__media{
	margin: 18px 0 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 560px;
	min-height: 730px;
	padding-left: 38px;
	overflow: hidden;
}

.snapserve-page .snapserve-phone-mockup{
	position: relative;
	width: min(100%, 332px);
	aspect-ratio: 390 / 790;
	margin-left: 20px;
	padding: 7px;
	border-radius: 46px;
	background: linear-gradient(180deg, #2a3038 0%, #151a21 100%);
	box-shadow: 0 22px 52px rgba(17, 73, 133, 0.18), 0 10px 22px rgba(10, 28, 58, 0.12);
}

.snapserve-page .snapserve-phone-mockup::before{
	content: "";
	position: absolute;
	inset: 2px;
	border-radius: 41px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	pointer-events: none;
}

.snapserve-page .snapserve-phone-mockup::after{
	content: "";
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 34%;
	height: 24px;
	border-radius: 999px;
	background: linear-gradient(180deg, #171c25 0%, #202734 100%);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
	pointer-events: none;
}

.snapserve-page .snapserve-phone-mockup__screen{
	position: relative;
	height: 100%;
	overflow: hidden;
	border-radius: 38px;
	background: #ffffff;
}

.snapserve-page .snapserve-phone-mockup__screen img{
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: calc(100% + 22px);
	height: calc(100% + 22px);
	max-width: none;
	object-fit: cover;
	object-position: center top;
	transform: translateX(-50%) translateY(-10px);
}

.snapserve-page .snapserve-hero__content{
	max-width: 700px;
	display: flex;
	flex-direction: column;
	margin-top: 26px;
}

.snapserve-page .snapserve-hero__title{
	margin: 0 0 20px;
	max-width: 620px;
	font-size: clamp(28px, 3vw, 48px);
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -0.5px;
	color: #ffffff;
}

.snapserve-page .snapserve-hero__text{
	margin: 0 0 14px;
	max-width: 670px;
	font-size: 16px;
	line-height: 1.68;
	font-weight: 400;
	color: rgba(244, 249, 255, 0.90);
}

.snapserve-page .snapserve-hero__text:last-of-type{
	margin-bottom: 30px;
}

.snapserve-page .snapserve-hero__actions{
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin-top: 18px;
}

.snapserve-page .snapserve-hero__btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 248px;
	padding: 16px 38px;
	border-radius: 12px;
	background: linear-gradient(180deg, #23b1ff 0%, #0f95ed 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
	box-shadow: 0 14px 30px rgba(8, 133, 224, 0.30);
}

.snapserve-page .snapserve-hero__btn:hover,
.snapserve-page .snapserve-hero__btn:focus-visible{
	background: linear-gradient(180deg, #18a4f1 0%, #057ccc 100%);
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(8, 133, 224, 0.34);
}

@media (max-width: 1100px){
	.snapserve-page .snapserve-hero{
		padding: 88px 0 60px;
	}

	.snapserve-page .snapserve-hero__grid{
		grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
		gap: 36px;
	}

	.snapserve-page .snapserve-hero__media{
		margin-top: 20px;
		min-height: 620px;
		max-width: 390px;
		padding-left: 22px;
	}

	.snapserve-page .snapserve-phone-mockup{
		width: min(100%, 310px);
		margin-left: 14px;
	}

	.snapserve-page .snapserve-hero__title{
		font-size: clamp(27px, 3.6vw, 44px);
	}

	.snapserve-page .snapserve-hero__text{
		font-size: 15px;
		line-height: 1.72;
	}

	.snapserve-page .snapserve-hero__btn{
		min-width: 220px;
		padding: 14px 30px;
		font-size: 15px;
	}
}

@media (max-width: 820px){
	.snapserve-page .snapserve-hero{
		padding: 82px 0 44px;
	}

	.snapserve-page .snapserve-hero__grid{
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.snapserve-page .snapserve-hero__media{
		margin-top: 8px;
		justify-content: center;
		width: min(90vw, 360px);
		max-width: 360px;
		min-height: 500px;
		padding-left: 0;
		overflow: hidden;
	}

	.snapserve-page .snapserve-phone-mockup{
		width: min(100%, 292px);
		margin-left: 0;
	}

	.snapserve-page .snapserve-hero::after{
		right: -110px;
		bottom: -170px;
		width: 340px;
		height: 340px;
		opacity: 0.38;
	}

	.snapserve-page .snapserve-hero__content{
		max-width: 100%;
		text-align: left;
		margin-top: 2px;
	}

	.snapserve-page .snapserve-hero__title{
		margin-bottom: 14px;
		font-size: clamp(26px, 6.5vw, 36px);
		line-height: 1.21;
	}

	.snapserve-page .snapserve-hero__text{
		font-size: 15px;
		line-height: 1.74;
	}

	.snapserve-page .snapserve-hero__text:last-of-type{
		margin-bottom: 20px;
	}

	.snapserve-page .snapserve-hero__actions{
		justify-content: center;
		margin-top: 6px;
	}

	.snapserve-page .snapserve-hero__btn{
		min-width: 212px;
		padding: 13px 28px;
		font-size: 15px;
	}
}

@media (max-width: 480px){
	.snapserve-page .snapserve-hero{
		padding: 76px 0 34px;
	}

	.snapserve-page .snapserve-hero__media{
		margin-top: -4px;
		width: min(90vw, 320px);
		max-width: 320px;
		min-height: 450px;
		overflow: hidden;
	}

	.snapserve-page .snapserve-phone-mockup{
		width: min(100%, 268px);
		padding: 8px;
		border-radius: 40px;
	}

	.snapserve-page .snapserve-phone-mockup::before{
		inset: 3px;
		border-radius: 35px;
	}

	.snapserve-page .snapserve-phone-mockup::after{
		top: 16px;
		height: 22px;
	}

	.snapserve-page .snapserve-phone-mockup__screen{
		border-radius: 30px;
	}

	.snapserve-page .snapserve-phone-mockup__screen img{
		width: calc(100% + 18px);
		height: calc(100% + 18px);
		transform: translateX(-50%) translateY(-8px);
	}

	.snapserve-page .snapserve-hero::after{
		right: -120px;
		bottom: -165px;
		width: 280px;
		height: 280px;
		opacity: 0.3;
	}

	.snapserve-page .snapserve-hero__content{
		margin-top: 4px;
	}

	.snapserve-page .snapserve-hero__title{
		font-size: clamp(22px, 7.6vw, 28px);
		line-height: 1.21;
	}

	.snapserve-page .snapserve-hero__text{
		font-size: 14px;
		line-height: 1.8;
	}

	.snapserve-page .snapserve-hero__btn{
		width: 100%;
		max-width: 260px;
		font-size: 15px;
	}
}

/* SnapServe - How It Works */
.snapserve-page .snapserve-how{
	position: relative;
	background: #f8fbff;
	padding: 88px 0 94px;
	overflow: hidden;
}

.snapserve-page .snapserve-how::before{
	content: "";
	position: absolute;
	inset: 0;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M15 10v10M10 15h10' stroke='%2396c9f3' stroke-opacity='.28' stroke-width='1.1' stroke-linecap='round'/%3E%3C/svg%3E") 0 0/30px 30px repeat;
	pointer-events: none;
}

.snapserve-page .snapserve-how .align-hero{
	position: relative;
	z-index: 1;
	max-width: 1320px;
}

.snapserve-page .snapserve-how__title{
	margin: 0;
	text-align: center;
	font-size: clamp(38px, 3.8vw, 50px);
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: #244677;
}

.snapserve-page .snapserve-how__subtitle{
	margin: 14px auto 62px;
	max-width: 760px;
	text-align: center;
	font-size: 17px;
	line-height: 1.6;
	font-weight: 400;
	color: #8693ba;
}

.snapserve-page .snapserve-how__row{
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(520px, 596px);
	align-items: center;
	gap: 54px;
	margin-bottom: 62px;
}

.snapserve-page .snapserve-how__row--second{
	position: relative;
	grid-template-columns: minmax(520px, 596px) minmax(0, 1fr);
	margin-top: 18px;
	padding-top: 56px;
}

.snapserve-page .snapserve-how__row--third{
	grid-template-columns: minmax(0, 1fr) minmax(520px, 596px);
	align-items: center;
	margin-bottom: 54px;
}

.snapserve-page .snapserve-how__row--second::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, #1da9f5 0%, #1c8ef1 100%);
}

.snapserve-page .snapserve-step{
	max-width: 610px;
}

.snapserve-page .snapserve-how__row--first .snapserve-step{
	padding-left: 18px;
}

.snapserve-page .snapserve-how__row--second .snapserve-step,
.snapserve-page .snapserve-how__row--third .snapserve-step{
	padding-right: 18px;
}

.snapserve-page .snapserve-step__head{
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 26px;
}

.snapserve-page .snapserve-step__number{
	flex: 0 0 auto;
	width: 66px;
	height: 66px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #25b3ff 0%, #0a7ad4 100%);
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 18px 34px rgba(16, 144, 228, 0.28);
}

.snapserve-page .snapserve-how__row--first .snapserve-step__number{
	background: linear-gradient(180deg, #1f98ef 0%, #0f70c4 100%);
	box-shadow: 0 18px 34px rgba(15, 112, 196, 0.28);
}

.snapserve-page .snapserve-how__row--second .snapserve-step__number{
	background: linear-gradient(180deg, #23b8ff 0%, #0f92e5 100%);
	box-shadow: 0 18px 34px rgba(15, 146, 229, 0.26);
}

.snapserve-page .snapserve-how__row--third .snapserve-step__number{
	background: linear-gradient(180deg, #415b86 0%, #263b61 100%);
	box-shadow: 0 18px 34px rgba(38, 59, 97, 0.24);
}

.snapserve-page .snapserve-step__heading{
	padding-top: 2px;
}

.snapserve-page .snapserve-how__row--third .snapserve-step{
	align-self: center;
}

.snapserve-page .snapserve-step__title{
	margin: 0;
	font-size: clamp(24px, 2.1vw, 32px);
	line-height: 1.1;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: #2c4471;
}

.snapserve-page .snapserve-step__eyebrow{
	margin: 6px 0 0;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 600;
	color: #1297f3;
}

.snapserve-page .snapserve-how__row--first .snapserve-step__eyebrow{
	color: #0f70c4;
}

.snapserve-page .snapserve-how__row--second .snapserve-step__eyebrow{
	color: #0f92e5;
}

.snapserve-page .snapserve-how__row--third .snapserve-step__eyebrow{
	color: #263b61;
}

.snapserve-page .snapserve-step__text{
	margin: 0 0 26px;
	max-width: 620px;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 400;
	color: #6d7ca0;
}

.snapserve-page .snapserve-step__chips{
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.snapserve-page .snapserve-step__feature-panel{
	display: grid;
	gap: 18px;
	padding: 24px 24px 26px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(44, 157, 239, 0.14);
	box-shadow: 0 18px 34px rgba(78, 153, 214, 0.08);
	backdrop-filter: blur(6px);
}

.snapserve-page .snapserve-step__feature{
	display: grid;
	gap: 10px;
}

.snapserve-page .snapserve-step__feature + .snapserve-step__feature{
	padding-top: 8px;
	border-top: 1px solid rgba(137, 189, 232, 0.28);
}

.snapserve-page .snapserve-step__feature-head{
	display: flex;
	align-items: center;
	gap: 10px;
}

.snapserve-page .snapserve-step__feature-head svg{
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	fill: none;
	stroke: #1798f1;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.snapserve-page .snapserve-step__feature-head h4{
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
	color: #29446f;
}

.snapserve-page .snapserve-step__feature p{
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #7281a3;
}

.snapserve-page .snapserve-chip{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid rgba(28, 159, 240, 0.14);
	box-shadow: 0 10px 24px rgba(30, 93, 153, 0.08);
	color: #29446f;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
}

.snapserve-page .snapserve-chip svg{
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	fill: none;
	stroke: #1798f1;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.snapserve-page .snapserve-card{
	position: relative;
	margin: 0;
	width: 100%;
}

.snapserve-page .snapserve-how__row--first .snapserve-card{
	justify-self: end;
}

.snapserve-page .snapserve-how__row--second .snapserve-card{
	justify-self: start;
}

.snapserve-page .snapserve-card-stack{
	display: grid;
	gap: 26px;
	width: 100%;
}

.snapserve-page .snapserve-how__row--third .snapserve-card-stack{
	justify-self: end;
}

.snapserve-page .snapserve-card__glow{
	position: absolute;
	inset: -16px -20px;
	border-radius: 34px;
	background:
		linear-gradient(180deg, rgba(57, 178, 255, 0.16) 0%, rgba(57, 178, 255, 0.05) 55%, rgba(57, 178, 255, 0) 100%);
	filter: blur(12px);
	pointer-events: none;
}

.snapserve-page .snapserve-card__screen{
	position: relative;
	border-radius: 24px;
	padding: 8px;
	background: #ffffff;
	border: 3px solid rgba(255, 255, 255, 0.92);
	box-shadow: 0 22px 42px rgba(78, 153, 214, 0.14);
	overflow: hidden;
}

.snapserve-page .snapserve-card__screen img{
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.snapserve-page .snapserve-how__actions{
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.snapserve-page .snapserve-how__btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 248px;
	padding: 16px 34px;
	border-radius: 16px;
	background: linear-gradient(90deg, #1f5fbf 0%, #1f5fbf 48%, #22aff4 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: 0 16px 28px rgba(30, 120, 214, 0.28);
	transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.snapserve-page .snapserve-how__btn:hover,
.snapserve-page .snapserve-how__btn:focus-visible{
	background: linear-gradient(180deg, #159ce8 0%, #067dcb 100%);
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(9, 126, 208, 0.28);
}

.snapserve-page .snapserve-how__btn span{
	font-size: 18px;
	line-height: 1;
}

@media (max-width: 1180px){
	.snapserve-page .snapserve-how{
		padding: 74px 0 78px;
	}

	.snapserve-page .snapserve-how__subtitle{
		margin-bottom: 48px;
	}

	.snapserve-page .snapserve-how__row{
		grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
		gap: 34px;
		margin-bottom: 48px;
	}

	.snapserve-page .snapserve-how__row--second,
	.snapserve-page .snapserve-how__row--third{
		grid-template-columns: minmax(430px, 520px) minmax(0, 1fr);
		padding-top: 44px;
	}

	.snapserve-page .snapserve-how__row--third{
		grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
		padding-top: 0;
	}

	.snapserve-page .snapserve-step__number{
		width: 60px;
		height: 60px;
		border-radius: 17px;
	}

	.snapserve-page .snapserve-step__title{
		font-size: clamp(28px, 2.7vw, 38px);
	}
}

@media (max-width: 920px){
	.snapserve-page .snapserve-how{
		padding: 62px 0 68px;
	}

	.snapserve-page .snapserve-how__title{
		font-size: clamp(34px, 8vw, 46px);
	}

	.snapserve-page .snapserve-how__subtitle{
		margin: 12px auto 36px;
		font-size: 16px;
	}

	.snapserve-page .snapserve-how__row,
	.snapserve-page .snapserve-how__row--second,
	.snapserve-page .snapserve-how__row--third{
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 40px;
		padding-top: 0;
	}

	.snapserve-page .snapserve-how__row--second::before{
		top: -20px;
	}

	.snapserve-page .snapserve-how__row--first .snapserve-step,
	.snapserve-page .snapserve-how__row--second .snapserve-step,
	.snapserve-page .snapserve-how__row--third .snapserve-step{
		order: 2;
		padding-left: 0;
		padding-right: 0;
	}

	.snapserve-page .snapserve-how__row--first .snapserve-card,
	.snapserve-page .snapserve-how__row--second .snapserve-card,
	.snapserve-page .snapserve-how__row--third .snapserve-card-stack{
		order: 1;
		justify-self: stretch;
	}

	.snapserve-page .snapserve-step__head{
		margin-bottom: 18px;
	}

	.snapserve-page .snapserve-step__number{
		width: 56px;
		height: 56px;
		border-radius: 16px;
	}

	.snapserve-page .snapserve-step__title{
		font-size: clamp(28px, 6vw, 36px);
	}

	.snapserve-page .snapserve-card-stack{
		gap: 20px;
	}
}

@media (max-width: 560px){
	.snapserve-page .snapserve-how{
		padding: 52px 0 58px;
	}

	.snapserve-page .snapserve-how__subtitle{
		margin-bottom: 30px;
		font-size: 15px;
		line-height: 1.65;
	}

	.snapserve-page .snapserve-step__head{
		gap: 14px;
		margin-bottom: 14px;
	}

	.snapserve-page .snapserve-step__number{
		width: 48px;
		height: 48px;
		border-radius: 14px;
		font-size: 16px;
	}

	.snapserve-page .snapserve-step__title{
		font-size: 26px;
	}

	.snapserve-page .snapserve-step__eyebrow{
		font-size: 16px;
	}

	.snapserve-page .snapserve-step__text{
		margin-bottom: 20px;
		font-size: 15px;
		line-height: 1.75;
	}

	.snapserve-page .snapserve-step__feature-panel{
		gap: 14px;
		padding: 18px 16px 20px;
		border-radius: 16px;
	}

	.snapserve-page .snapserve-step__feature p{
		font-size: 14px;
		line-height: 1.7;
	}

	.snapserve-page .snapserve-step__chips{
		gap: 10px;
	}

	.snapserve-page .snapserve-chip{
		width: 100%;
		justify-content: flex-start;
		padding: 10px 14px;
		font-size: 14px;
	}

	.snapserve-page .snapserve-card__glow{
		inset: -12px;
		border-radius: 24px;
		filter: blur(10px);
	}

	.snapserve-page .snapserve-card__screen{
		border-radius: 18px;
		padding: 6px;
	}

	.snapserve-page .snapserve-card__screen img{
		border-radius: 12px;
	}

	.snapserve-page .snapserve-card-stack{
		gap: 16px;
	}

	.snapserve-page .snapserve-how__btn{
		width: 100%;
		max-width: 252px;
		padding: 15px 28px;
	}
}

/* SnapServe - Value Props */
.snapserve-page .snapserve-value{
	background: linear-gradient(180deg, #e3e7ed 0%, #edf1f5 46%, #ffffff 100%);
	padding: 96px 0 88px;
}

.snapserve-page .snapserve-value__title{
	margin: 0 auto;
	max-width: none;
	text-align: center;
	font-size: 35px;
	line-height: 1.12;
	font-weight: 600;
	color: #18a7e8;
}

.snapserve-page .snapserve-value__subtitle{
	margin: 14px auto 68px;
	max-width: 740px;
	text-align: center;
	font-size: 17px;
	line-height: 1.62;
	color: #4b5b73;
}

.snapserve-page .snapserve-value__grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
	max-width: 1200px;
	margin: 0 auto;
}

.snapserve-page .snapserve-value__item{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.snapserve-page .snapserve-value__icon{
	width: 64px;
	height: 64px;
	border-radius: 12px;
	background: #17a9e9;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.snapserve-page .snapserve-value__icon svg{
	width: 28px;
	height: 28px;
}

.snapserve-page .snapserve-value__item-title{
	margin: 0 0 12px;
	font-size: 21px;
	line-height: 1.22;
	font-weight: 600;
	color: #172744;
}

@media (min-width: 1200px){
	.snapserve-page .snapserve-value__item-title{
		white-space: nowrap;
	}
}

.snapserve-page .snapserve-value__text{
	margin: 0 auto;
	max-width: 350px;
	font-size: 14px;
	line-height: 1.68;
	color: #45566f;
}

/* SnapServe - Pricing */
.snapserve-page .snapserve-pricing{
	background: #ffffff;
	padding: 58px 0 88px;
}

.snapserve-page .snapserve-pricing__title{
	margin: 0;
	text-align: center;
	font-size: 48px;
	line-height: 1.12;
	font-weight: 600;
	color: #2d446f;
}

.snapserve-page .snapserve-pricing__subtitle{
	margin: 12px 0 78px;
	text-align: center;
	font-size: 18px;
	line-height: 1.5;
	color: #7c82aa;
}

.snapserve-page .snapserve-pricing__grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(300px, 392px));
	justify-content: center;
	gap: 16px;
	align-items: stretch;
}

.snapserve-page .snapserve-plan{
	position: relative;
	background: #ffffff;
	border: 1px solid #dde6f0;
	border-radius: 22px;
	padding: 32px 32px 26px;
	min-height: 756px;
	box-shadow: 0 10px 26px rgba(27, 48, 88, 0.12);
	transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
	display: flex;
	flex-direction: column;
}

.snapserve-page .snapserve-plan--pro{
	border: 4px solid #2295eb;
	border-radius: 26px;
	min-height: 796px;
	padding-top: 62px;
	padding-bottom: 36px;
	transform: translateY(-10px);
	box-shadow: 0 18px 34px rgba(24, 114, 193, 0.14);
}

.snapserve-page .snapserve-plan__badge{
	position: absolute;
	top: -4px;
	right: -4px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 26px 15px 24px;
	border-radius: 0 22px 0 24px;
	background: linear-gradient(180deg, #24a6f2 0%, #1896e6 100%);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	box-shadow: 0 12px 24px rgba(24, 150, 230, 0.2);
}

.snapserve-page .snapserve-plan__badge svg{
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex: 0 0 auto;
}

.snapserve-page .snapserve-plan--basic:hover{
	border-color: #3b4d73;
	box-shadow: 0 16px 30px rgba(34, 56, 92, 0.14);
	transform: translateY(-3px);
}

.snapserve-page .snapserve-plan--premium:hover{
	border-color: #1893e6;
	box-shadow: 0 16px 30px rgba(27, 48, 88, 0.14);
	transform: translateY(-3px);
}

.snapserve-page .snapserve-plan--basic,
.snapserve-page .snapserve-plan--premium{
	min-height: 756px;
}

.snapserve-page .snapserve-plan__icon{
	width: 56px;
	height: 56px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #eef1f6;
	color: #3d4b67;
	margin-bottom: 24px;
}

.snapserve-page .snapserve-plan__icon svg{
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.snapserve-page .snapserve-plan--pro .snapserve-plan__icon{
	background: linear-gradient(180deg, #25b3ff 0%, #0a8de7 100%);
	color: #ffffff;
	box-shadow: 0 14px 28px rgba(20, 160, 237, 0.28);
}

.snapserve-page .snapserve-plan__icon--premium{
	background: #dcebff;
	color: #2594ef;
}

.snapserve-page .snapserve-plan__name{
	margin: 0;
	font-size: 31px;
	line-height: 1.2;
	font-weight: 700;
	color: #2d446f;
}

.snapserve-page .snapserve-plan__desc{
	margin: 10px 0 34px;
	font-size: 15px;
	line-height: 1.5;
	color: #7f86b1;
}

.snapserve-page .snapserve-plan__price{
	margin: 0 0 28px;
	font-size: 62px;
	line-height: 0.98;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #32466e;
}

.snapserve-page .snapserve-plan--pro .snapserve-plan__price{
	color: #1d94e9;
}

.snapserve-page .snapserve-plan__price span{
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0;
	color: #7d83a8;
}

.snapserve-page .snapserve-plan__features{
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}

.snapserve-page .snapserve-plan__features li{
	position: relative;
	padding-left: 34px;
	margin-bottom: 18px;
	font-size: 17px;
	line-height: 1.35;
	color: #7b84aa;
}

.snapserve-page .snapserve-plan__features li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #d9f7de;
	box-shadow: inset 0 0 0 1px rgba(103, 205, 122, 0.12);
}

.snapserve-page .snapserve-plan__features li::after{
	content: "";
	position: absolute;
	left: 7px;
	top: 6px;
	width: 7px;
	height: 4px;
	border-left: 2px solid #08b24b;
	border-bottom: 2px solid #08b24b;
	transform: rotate(-45deg);
}

.snapserve-page .snapserve-plan__features strong{
	font-weight: 700;
	color: #6f789e;
}

.snapserve-page .snapserve-plan__btn{
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-top: 8px;
	cursor: pointer;
	transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, filter 220ms ease;
}

.snapserve-page .snapserve-plan--pro .snapserve-plan__btn{
	margin-top: auto;
}

.snapserve-page .snapserve-plan__btn--dark{
	background: #3b4d73;
}

.snapserve-page .snapserve-plan__btn--blue{
	background: linear-gradient(180deg, #2ca1ef 0%, #1893e6 100%);
	box-shadow: 0 16px 28px rgba(22, 150, 233, 0.24);
}

.snapserve-page .snapserve-plan--pro .snapserve-plan__btn--blue{
	background: linear-gradient(90deg, #1f5fbf 0%, #1f5fbf 48%, #22aff4 100%);
	box-shadow: 0 16px 28px rgba(30, 120, 214, 0.28);
}

.snapserve-page .snapserve-plan__btn--dark:hover,
.snapserve-page .snapserve-plan__btn--dark:focus-visible{
	background: #43577f;
	box-shadow: 0 14px 26px rgba(34, 56, 92, 0.24);
	transform: translateY(-2px);
}

.snapserve-page .snapserve-plan__btn--blue:hover,
.snapserve-page .snapserve-plan__btn--blue:focus-visible{
	background: linear-gradient(180deg, #2598e5 0%, #1186d8 100%);
	box-shadow: 0 18px 30px rgba(24, 167, 232, 0.28);
	transform: translateY(-2px);
}

.snapserve-page .snapserve-plan__btn:active{
	transform: translateY(0);
	filter: brightness(0.98);
}

.snapserve-page .snapserve-pricing__guarantee{
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 14px;
	margin: 26px auto 0;
	padding: 12px 24px;
	border-radius: 999px;
	background: #f4fff7;
	border: 1px solid #b8efc7;
	color: #2d446f;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.snapserve-page .snapserve-pricing__guarantee-icon{
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #08b24b;
	color: #ffffff;
	flex: 0 0 auto;
}

.snapserve-page .snapserve-pricing__guarantee-icon svg{
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* SnapServe - Analytics */
.snapserve-page .snapserve-analytics{
	position: relative;
	background:
		linear-gradient(135deg, rgba(92, 125, 181, 0.16) 0%, rgba(92, 125, 181, 0) 32%),
		linear-gradient(180deg, #334768 0%, #2e4161 100%);
	padding: 72px 0 80px;
	overflow: hidden;
}

.snapserve-page .snapserve-analytics::before{
	content: "";
	position: absolute;
	inset: 0;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M15 10v10M10 15h10' stroke='%23c7daef' stroke-opacity='.16' stroke-width='1.05' stroke-linecap='round'/%3E%3C/svg%3E") 0 0/30px 30px repeat;
	pointer-events: none;
}

.snapserve-page .snapserve-analytics .align-hero{
	position: relative;
	z-index: 1;
	max-width: 1320px;
}

.snapserve-page .snapserve-analytics__grid{
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(470px, 620px);
	align-items: center;
	gap: 54px;
}

.snapserve-page .snapserve-analytics__content{
	max-width: 620px;
	padding-left: 6px;
}

.snapserve-page .snapserve-analytics__badge{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(108, 132, 173, 0.4);
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.snapserve-page .snapserve-analytics__badge svg{
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #1fb1ff;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.snapserve-page .snapserve-analytics__title{
	margin: 26px 0 22px;
	max-width: 820px;
	font-size: clamp(36px, 3.6vw, 52px);
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: -0.035em;
	color: #ffffff;
}

.snapserve-page .snapserve-analytics__title span{
	display: block;
}

.snapserve-page .snapserve-analytics__title span:first-child{
	white-space: nowrap;
}

.snapserve-page .snapserve-analytics__title span:last-child{
	white-space: nowrap;
}

.snapserve-page .snapserve-analytics__text{
	margin: 0 0 34px;
	max-width: 610px;
	font-size: 17px;
	line-height: 1.52;
	font-weight: 400;
	color: rgba(230, 238, 249, 0.96);
}

.snapserve-page .snapserve-analytics__features{
	display: grid;
	gap: 18px;
}

.snapserve-page .snapserve-analytics__feature{
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.snapserve-page .snapserve-analytics__feature-icon{
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(180deg, #20b0ff 0%, #0c88e4 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 14px 26px rgba(10, 124, 210, 0.24);
}

.snapserve-page .snapserve-analytics__feature-icon svg{
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #ffffff;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.snapserve-page .snapserve-analytics__feature-copy h3{
	margin: 2px 0 6px;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
	color: #ffffff;
}

.snapserve-page .snapserve-analytics__feature-copy p{
	margin: 0;
	font-size: 15px;
	line-height: 1.46;
	font-weight: 400;
	color: rgba(211, 223, 240, 0.92);
}

.snapserve-page .snapserve-analytics__actions{
	margin-top: 30px;
}

.snapserve-page .snapserve-analytics__btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 254px;
	padding: 18px 28px;
	border-radius: 16px;
	background: #ffffff;
	color: #224679;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: 0 16px 30px rgba(18, 33, 62, 0.18);
	transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.snapserve-page .snapserve-analytics__btn:hover,
.snapserve-page .snapserve-analytics__btn:focus-visible{
	background: #f7fbff;
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(18, 33, 62, 0.22);
}

.snapserve-page .snapserve-analytics__btn span{
	font-size: 20px;
	line-height: 1;
}

.snapserve-page .snapserve-analytics__media{
	position: relative;
	min-height: 540px;
}

.snapserve-page .snapserve-analytics__panel{
	position: relative;
	max-width: 592px;
	margin: 78px 0 0 auto;
	padding: 8px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.96);
	border: 2px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 26px 46px rgba(21, 34, 60, 0.2);
	overflow: hidden;
}

.snapserve-page .snapserve-analytics__panel img{
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
}

.snapserve-page .snapserve-analytics__stat{
	position: absolute;
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 192px;
	padding: 18px 18px 16px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 18px 34px rgba(20, 34, 59, 0.16);
}

.snapserve-page .snapserve-analytics__stat--top{
	top: 44px;
	right: -10px;
}

.snapserve-page .snapserve-analytics__stat--bottom{
	left: -16px;
	bottom: 40px;
}

.snapserve-page .snapserve-analytics__stat-icon{
	width: 50px;
	height: 50px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.snapserve-page .snapserve-analytics__stat-icon--pink{
	background: #e9efff;
}

.snapserve-page .snapserve-analytics__stat-icon--green{
	background: #dcf7e8;
}

.snapserve-page .snapserve-analytics__stat-icon svg{
	width: 24px;
	height: 24px;
	fill: none;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.snapserve-page .snapserve-analytics__stat-icon--pink svg{
	stroke: #f04e9b;
}

.snapserve-page .snapserve-analytics__stat-icon--green svg{
	stroke: #4e7bd8;
}

.snapserve-page .snapserve-analytics__stat-copy{
	display: grid;
	gap: 4px;
}

.snapserve-page .snapserve-analytics__stat-label{
	font-size: 13px;
	line-height: 1.3;
	color: #6f7f9b;
}

.snapserve-page .snapserve-analytics__stat-copy strong{
	font-size: 17px;
	line-height: 1.15;
	font-weight: 700;
	color: #223e6b;
}

.snapserve-page .snapserve-analytics__stat-note{
	font-size: 13px;
	line-height: 1.35;
	color: #2f6fff;
}

.snapserve-page .snapserve-analytics__stat-note--positive{
	color: #08a84e;
}

@media (max-width: 1100px){
	.snapserve-page .snapserve-value{
		padding: 78px 0 72px;
	}

	.snapserve-page .snapserve-value__title{
		font-size: 32px;
	}

	.snapserve-page .snapserve-value__item-title{
		font-size: 19px;
	}

	.snapserve-page .snapserve-value__icon{
		width: 60px;
		height: 60px;
	}

	.snapserve-page .snapserve-value__icon svg{
		width: 25px;
		height: 25px;
	}

	.snapserve-page .snapserve-pricing__title{
		font-size: 34px;
	}

	.snapserve-page .snapserve-plan__name{
		font-size: 30px;
	}

	.snapserve-page .snapserve-plan__price{
		font-size: 42px;
	}

	.snapserve-page .snapserve-analytics{
		padding: 66px 0 72px;
	}

	.snapserve-page .snapserve-analytics__grid{
		grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
		gap: 36px;
	}

	.snapserve-page .snapserve-analytics__title{
		font-size: clamp(38px, 4vw, 52px);
	}

	.snapserve-page .snapserve-analytics__text{
		font-size: 17px;
	}

	.snapserve-page .snapserve-analytics__feature-copy p{
		font-size: 15px;
	}

	.snapserve-page .snapserve-analytics__media{
		min-height: 470px;
	}

	.snapserve-page .snapserve-analytics__panel{
		margin-top: 62px;
	}

	.snapserve-page .snapserve-analytics__stat--top{
		right: -2px;
	}
}

@media (max-width: 900px){
	.snapserve-page .snapserve-value__grid{
		grid-template-columns: 1fr;
		gap: 32px;
		max-width: 520px;
	}

	.snapserve-page .snapserve-value__subtitle{
		margin-bottom: 42px;
	}

	.snapserve-page .snapserve-pricing{
		padding-bottom: 70px;
	}

	.snapserve-page .snapserve-pricing__grid{
		grid-template-columns: 1fr;
		max-width: 520px;
		margin: 0 auto;
		gap: 18px;
	}

	.snapserve-page .snapserve-plan,
	.snapserve-page .snapserve-plan--pro{
		min-height: 0;
		transform: none;
	}

	.snapserve-page .snapserve-analytics{
		padding: 60px 0 66px;
	}

	.snapserve-page .snapserve-analytics__grid{
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.snapserve-page .snapserve-analytics__content{
		order: 2;
		max-width: 100%;
		padding-left: 0;
	}

	.snapserve-page .snapserve-analytics__title{
		max-width: 100%;
	}

	.snapserve-page .snapserve-analytics__title span:first-child,
	.snapserve-page .snapserve-analytics__title span:last-child{
		white-space: normal;
	}

	.snapserve-page .snapserve-analytics__media{
		order: 1;
		min-height: 0;
		width: 100%;
		max-width: 620px;
		margin: 0 auto;
	}

	.snapserve-page .snapserve-analytics__panel{
		margin: 54px 0 0;
	}

	.snapserve-page .snapserve-analytics__stat--top{
		right: -8px;
	}

	.snapserve-page .snapserve-analytics__stat--bottom{
		left: -8px;
	}
}

@media (max-width: 820px){
	.snapserve-page .snapserve-value__title{
		font-size: 27px;
	}

	.snapserve-page .snapserve-pricing__title{
		font-size: 29px;
	}

	.snapserve-page .snapserve-analytics__title{
		font-size: clamp(34px, 8vw, 44px);
	}

	.snapserve-page .snapserve-analytics__text{
		font-size: 16px;
	}
}

@media (max-width: 480px){
	.snapserve-page .snapserve-value{
		padding: 56px 0 60px;
	}

	.snapserve-page .snapserve-value__title{
		font-size: 23px;
	}

	.snapserve-page .snapserve-value__item-title{
		font-size: 21px;
	}

	.snapserve-page .snapserve-value__text{
		font-size: 14px;
		line-height: 1.66;
	}

	.snapserve-page .snapserve-pricing__title{
		font-size: 24px;
	}

	.snapserve-page .snapserve-plan{
		padding: 28px 20px 20px;
	}

	.snapserve-page .snapserve-plan__name{
		font-size: 27px;
	}

	.snapserve-page .snapserve-plan__price{
		font-size: 38px;
	}

	.snapserve-page .snapserve-plan__price span{
		font-size: 16px;
	}

	.snapserve-page .snapserve-analytics{
		padding: 50px 0 56px;
	}

	.snapserve-page .snapserve-analytics__badge{
		padding: 9px 14px;
		font-size: 13px;
	}

	.snapserve-page .snapserve-analytics__title{
		margin: 20px 0 18px;
		font-size: 30px;
		line-height: 1.12;
	}

	.snapserve-page .snapserve-analytics__text{
		margin-bottom: 26px;
		font-size: 15px;
		line-height: 1.7;
	}

	.snapserve-page .snapserve-analytics__features{
		gap: 16px;
	}

	.snapserve-page .snapserve-analytics__feature{
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
	}

	.snapserve-page .snapserve-analytics__feature-icon{
		width: 44px;
		height: 44px;
		border-radius: 13px;
	}

	.snapserve-page .snapserve-analytics__feature-copy h3{
		font-size: 16px;
	}

	.snapserve-page .snapserve-analytics__feature-copy p{
		font-size: 14px;
		line-height: 1.55;
	}

	.snapserve-page .snapserve-analytics__btn{
		width: 100%;
		min-width: 0;
		max-width: 252px;
		padding: 16px 24px;
		font-size: 17px;
	}

	.snapserve-page .snapserve-analytics__panel{
		margin-top: 28px;
		border-radius: 18px;
		padding: 6px;
	}

	.snapserve-page .snapserve-analytics__panel img{
		border-radius: 12px;
	}

	.snapserve-page .snapserve-analytics__stat-copy strong{
		font-size: 18px;
	}

	.snapserve-page .snapserve-analytics__stat{
		position: static;
		min-width: 0;
		margin-top: 14px;
		padding: 16px;
		border-radius: 16px;
	}

	.snapserve-page .snapserve-analytics__media{
		display: flex;
		flex-direction: column;
	}
}
}

/* ==========================================================================
   Barcode Generator Page
   ========================================================================== */

.barcode-generator-page{
	background:
		radial-gradient(circle at top, rgba(30, 144, 255, 0.10), transparent 34%),
		linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f7fafe 100%);
	padding: 166px 0 88px;
}

.barcode-page-hero{
	padding: 128px 0 34px;
	text-align: center;
}

.barcode-page-hero__inner{
	max-width: 980px;
}

.barcode-page-hero__title{
	font-family: var(--font-serif);
	font-size: clamp(52px, 6vw, 72px);
	line-height: 1.12;
	letter-spacing: -1.6px;
	color: #32476d;
	margin-bottom: 22px;
}

.barcode-page-hero__copy{
	max-width: 860px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.6;
	color: #6b7ea0;
}

.barcode-page-hero__toggle{
	margin-top: 50px;
	padding: 14px 26px;
	border-radius: 14px;
	border: 2px solid #1590f2;
	background: #fff;
	color: #1590f2;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	box-shadow: 0 12px 28px rgba(21, 144, 242, 0.10);
	cursor: pointer;
	transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease;
}

.barcode-page-hero__toggle:hover,
.barcode-page-hero__toggle:focus-visible{
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(21, 144, 242, 0.18);
	background: #f4faff;
	outline: none;
}

.barcode-browser{
	padding-top: 6px;
}

.barcode-workspace{
	padding-top: 34px;
}

.barcode-benefits{
	padding-top: 42px;
	padding-bottom: 120px;
}

.barcode-browser__panel{
	background: rgba(255,255,255,0.98);
	border: 1px solid rgba(223, 232, 246, 0.94);
	border-radius: 28px;
	padding: 34px 32px 36px;
	box-shadow:
		0 26px 60px rgba(34, 76, 140, 0.08),
		0 2px 0 rgba(255,255,255,0.82) inset;
}

.barcode-browser__title{
	font-size: clamp(34px, 3.8vw, 52px);
	line-height: 1.08;
	letter-spacing: -0.7px;
	color: #2c4773;
	margin-bottom: 10px;
}

.barcode-browser__text{
	font-size: 16px;
	line-height: 1.6;
	color: #6f82a3;
}

.barcode-browser__categories{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0 22px;
}

.barcode-category{
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 48px;
	padding: 12px 22px;
	border: 0;
	border-radius: 14px;
	background: #f2f5fa;
	color: #7486a6;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2;
	font-family: inherit;
	text-align: left;
	box-shadow: inset 0 0 0 1px rgba(232, 238, 247, 0.94);
	cursor: pointer;
	transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease, color var(--t-fast) ease;
}

.barcode-category.is-active{
	background: linear-gradient(180deg, #2ea8ff 0%, #1294f4 100%);
	color: #fff;
	box-shadow: 0 14px 28px rgba(18, 148, 244, 0.24);
}

.barcode-category:hover,
.barcode-category:focus-visible{
	transform: translateY(-1px);
	box-shadow:
		inset 0 0 0 1px rgba(194, 209, 232, 0.94),
		0 12px 22px rgba(115, 140, 183, 0.12);
	outline: none;
}

.barcode-category.is-active:hover,
.barcode-category.is-active:focus-visible{
	box-shadow: 0 16px 30px rgba(18, 148, 244, 0.28);
}

.barcode-category__icon{
	position: relative;
	display: inline-flex;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	color: currentColor;
	opacity: 0.95;
}

.barcode-category__icon::before,
.barcode-category__icon::after{
	content: "";
	position: absolute;
}

.barcode-category__icon--grid::before{
	inset: 2px;
	border: 1.6px solid currentColor;
	border-radius: 4px;
}

.barcode-category__icon--grid::after{
	left: 8px;
	top: 3px;
	width: 1.6px;
	height: 12px;
	background: currentColor;
	box-shadow: 0 4px 0 currentColor;
}

.barcode-category__icon--columns::before{
	inset: 1px 2px;
	background:
		linear-gradient(90deg,
			currentColor 0 2px,
			transparent 2px 6px,
			currentColor 6px 8px,
			transparent 8px 12px,
			currentColor 12px 14px,
			transparent 14px 100%);
	border-radius: 4px;
}

.barcode-category__icon--linear::before{
	inset: 0;
	background:
		linear-gradient(90deg,
			currentColor 0 4px,
			transparent 4px 8px,
			currentColor 8px 12px,
			transparent 12px 15px,
			currentColor 15px 18px);
	border-radius: 3px;
}

.barcode-category__icon--user::before{
	left: 5px;
	top: 1px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
}

.barcode-category__icon--user::after{
	left: 2px;
	bottom: 1px;
	width: 14px;
	height: 8px;
	border-radius: 10px 10px 4px 4px;
	background: currentColor;
}

.barcode-category__icon--calendar::before{
	inset: 2px 1px 1px;
	border: 1.6px solid currentColor;
	border-radius: 4px;
}

.barcode-category__icon--calendar::after{
	left: 3px;
	top: 5px;
	width: 12px;
	height: 1.6px;
	background: currentColor;
	box-shadow: 0 -4px 0 currentColor;
}

.barcode-category__icon--signal::before{
	left: 1px;
	bottom: 1px;
	width: 3px;
	height: 7px;
	background: currentColor;
	box-shadow: 5px -3px 0 currentColor, 10px -6px 0 currentColor;
	border-radius: 1px;
}

.barcode-category__icon--pin::before{
	left: 5px;
	top: 1px;
	width: 8px;
	height: 8px;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	background: currentColor;
}

.barcode-category__icon--pin::after{
	left: 8px;
	top: 7px;
	width: 2px;
	height: 10px;
	background: currentColor;
	border-radius: 2px;
}

.barcode-browser__divider{
	height: 1px;
	margin-bottom: 32px;
	background: linear-gradient(90deg, rgba(190, 205, 226, 0.70), rgba(214, 223, 238, 0.38));
}

.barcode-browser__grid{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.barcode-browser__grid[hidden],
.barcode-browser__empty[hidden],
.barcode-card[hidden]{
	display: none !important;
}

.barcode-card{
	display: flex;
	flex-direction: column;
	min-height: 410px;
	padding: 24px 24px 22px;
	border-radius: 18px;
	background: linear-gradient(180deg, #283e61 0%, #203552 100%);
	color: #fff;
	box-shadow: 0 20px 42px rgba(26, 44, 75, 0.16);
	transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.barcode-card__title{
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 20px;
}

.barcode-card__preview{
	display: grid;
	place-items: center;
	min-height: 128px;
	padding: 18px;
	border-radius: 12px;
	background: #fff;
	margin-bottom: 20px;
}

.barcode-sample{
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 5px;
	height: 38px;
}

.barcode-sample span{
	display: block;
	width: var(--barcode-bar-width, 4px);
	height: 100%;
	background: linear-gradient(180deg, #345b98 0%, #1c2d49 100%);
	border-radius: 1px;
}

.barcode-symbol{
	position: relative;
	display: grid;
	place-items: center;
	color: #345b98;
}

.barcode-symbol--qr{
	grid-template-columns: repeat(3, 10px);
	grid-template-rows: repeat(3, 10px);
	gap: 3px;
}

.barcode-symbol--qr span{
	display: block;
	width: 10px;
	height: 10px;
	border: 2px solid currentColor;
}

.barcode-symbol--data-matrix{
	grid-template-columns: repeat(2, 8px);
	grid-template-rows: repeat(2, 8px);
	gap: 2px;
	padding: 4px;
	border: 2px solid currentColor;
}

.barcode-symbol--data-matrix span{
	display: block;
	width: 8px;
	height: 8px;
	background: currentColor;
}

.barcode-symbol--aztec{
	width: 30px;
	height: 30px;
	border: 3px solid currentColor;
	border-radius: 50%;
}

.barcode-symbol--aztec span{
	display: block;
	width: 12px;
	height: 12px;
	border: 3px solid currentColor;
	border-radius: 50%;
}

.barcode-symbol--pdf417{
	display: flex;
	align-items: stretch;
	gap: 8px;
	height: 24px;
}

.barcode-symbol--pdf417 span{
	display: block;
	width: 24px;
	height: 100%;
	border: 2px solid currentColor;
	background:
		repeating-linear-gradient(
			90deg,
			currentColor 0 2px,
			transparent 2px 5px
		);
}

.barcode-card__description{
	flex: 1 1 auto;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(245, 248, 255, 0.94);
}

.barcode-card__button{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 44px;
	margin-top: 20px;
	border-radius: 12px;
	border: 2px solid rgba(255,255,255,0.92);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	transition: background var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) ease;
}

.barcode-card__button:hover,
.barcode-card__button:focus-visible{
	background: #fff;
	color: #22395b;
	transform: translateY(-1px);
	outline: none;
}

.barcode-card:hover,
.barcode-card:focus-within{
	transform: translateY(-8px);
	box-shadow: 0 30px 56px rgba(26, 44, 75, 0.24);
}

.barcode-browser__empty{
	display: grid;
	place-items: center;
	min-height: 280px;
	padding: 38px 24px;
	border-radius: 24px;
	background: linear-gradient(180deg, #f9fbff 0%, #f3f7fd 100%);
	border: 1px dashed rgba(171, 190, 220, 0.9);
	text-align: center;
}

.barcode-browser__empty-title{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: #2f4a77;
}

.barcode-browser__empty-copy{
	max-width: 520px;
	margin-top: 12px;
	font-size: 16px;
	line-height: 1.7;
	color: #6f82a3;
}

.barcode-workspace__grid{
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
	gap: 30px;
	align-items: stretch;
}

.barcode-editor,
.barcode-actions__download{
	background: rgba(255,255,255,0.98);
	border: 1px solid rgba(223, 232, 246, 0.94);
	border-radius: 24px;
	box-shadow:
		0 26px 60px rgba(34, 76, 140, 0.08),
		0 2px 0 rgba(255,255,255,0.82) inset;
}

.barcode-editor{
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 40px 32px 34px;
}

.barcode-editor__group + .barcode-editor__group{
	margin-top: 28px;
}

.barcode-editor__label,
.barcode-actions__download-title{
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.4px;
	color: #314d79;
}

.barcode-editor__step{
	color: #1590f2;
}

.barcode-editor__select-wrap{
	position: relative;
	margin-top: 10px;
}

.barcode-editor__select-wrap::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #50688f;
	border-bottom: 2px solid #50688f;
	transform: translateY(-62%) rotate(45deg);
	pointer-events: none;
}

.barcode-editor__select,
.barcode-editor__input{
	width: 100%;
	min-height: 52px;
	padding: 14px 18px;
	border: 2px solid #dfe6f1;
	border-radius: 12px;
	background: #fff;
	font-size: 16px;
	line-height: 1.3;
	color: #31476c;
	outline: none;
	transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.barcode-editor__select{
	padding-right: 46px;
	appearance: none;
}

.barcode-editor__select:focus,
.barcode-editor__input:focus{
	border-color: #1590f2;
	box-shadow: 0 0 0 4px rgba(21, 144, 242, 0.10);
}

.barcode-editor__meta{
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.5;
	color: #7a86b4;
}

.barcode-preview-panel{
	margin-top: 28px;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	padding: 22px 22px 24px;
	border-radius: 18px;
	background: linear-gradient(180deg, #fafcff 0%, #f6f9fe 100%);
}

.barcode-preview-panel__heading{
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: #2e4770;
	margin-bottom: 14px;
}

.barcode-preview-panel__frame{
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 180px;
	padding: 26px 20px;
	border: 2px solid #dce4f1;
	border-radius: 14px;
	background: #fff;
}

.barcode-preview-panel__sample{
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 8px;
	height: 62px;
	margin-bottom: 10px;
}

.barcode-preview-panel__sample span{
	display: block;
	width: 4px;
	height: 100%;
	background: #1f1f1f;
	border-radius: 999px;
}

.barcode-preview-panel__sample span:nth-child(2),
.barcode-preview-panel__sample span:nth-child(6),
.barcode-preview-panel__sample span:nth-child(10){
	height: 82%;
	align-self: center;
}

.barcode-preview-panel__sample span:nth-child(4),
.barcode-preview-panel__sample span:nth-child(8),
.barcode-preview-panel__sample span:nth-child(12){
	height: 90%;
	align-self: center;
}

.barcode-preview-panel__caption{
	font-size: 13px;
	line-height: 1.4;
	color: #7d78be;
}

.barcode-actions{
	display: grid;
	gap: 26px;
	height: 100%;
	align-content: start;
}

.barcode-actions__generate{
	padding: 34px 32px 32px;
	border-radius: 24px;
	background: linear-gradient(180deg, #2d97ea 0%, #1a80d6 100%);
	box-shadow: 0 26px 54px rgba(27, 128, 214, 0.24);
}

.barcode-actions__title{
	font-size: clamp(26px, 3vw, 32px);
	font-weight: 800;
	line-height: 1.12;
	color: #fff;
	margin-bottom: 26px;
}

.barcode-actions__generate-button{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 60px;
	padding: 14px 20px;
	border: 0;
	border-radius: 14px;
	background: #fff;
	color: #1590f2;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: 0 12px 24px rgba(18, 62, 108, 0.12);
	cursor: pointer;
	transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.barcode-actions__generate-button:hover,
.barcode-actions__generate-button:focus-visible{
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(18, 62, 108, 0.18);
	outline: none;
}

.barcode-actions__download{
	padding: 34px 32px 32px;
}

.barcode-actions__copy{
	margin-top: 8px;
	font-size: 16px;
	line-height: 1.6;
	color: #7684ae;
}

.barcode-actions__format-grid{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 22px;
}

.barcode-actions__format{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	padding: 12px 16px;
	border: 0;
	border-radius: 12px;
	background: #f1f3f8;
	color: #7b87a9;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: transform var(--t-fast) ease, background var(--t-fast) ease, color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.barcode-actions__format:hover,
.barcode-actions__format:focus-visible{
	background: #e9eef7;
	color: #6d7da3;
	box-shadow: inset 0 0 0 1px rgba(209, 219, 235, 0.9);
	outline: none;
}

.barcode-actions__format.is-active{
	background: linear-gradient(180deg, #2d97ea 0%, #1a80d6 100%);
	color: #fff;
	box-shadow: 0 16px 28px rgba(27, 128, 214, 0.20);
	transform: translateY(-1px);
}

.barcode-actions__format.is-active:hover,
.barcode-actions__format.is-active:focus-visible{
	background: linear-gradient(180deg, #2d97ea 0%, #1a80d6 100%);
	color: #fff;
	box-shadow: 0 16px 28px rgba(27, 128, 214, 0.24);
	outline: none;
}

.barcode-actions__cta-group{
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.barcode-actions__cta{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 58px;
	padding: 14px 20px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(180deg, #2d3f5f 0%, #233651 100%);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.barcode-actions__cta:hover,
.barcode-actions__cta:focus-visible{
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(35, 54, 81, 0.22);
	outline: none;
}

.barcode-benefits__grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.barcode-benefit-card{
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 228px;
	padding: 32px 28px 30px;
	border-radius: 24px;
	background: rgba(255,255,255,0.98);
	border: 1px solid rgba(223, 232, 246, 0.94);
	text-align: center;
	box-shadow:
		0 26px 60px rgba(34, 76, 140, 0.08),
		0 2px 0 rgba(255,255,255,0.82) inset;
	transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease;
}

.barcode-benefit-card__icon{
	position: relative;
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
	border-radius: 50%;
	background: linear-gradient(180deg, #2d97ea 0%, #1a80d6 100%);
	box-shadow: 0 16px 28px rgba(27, 128, 214, 0.22);
	transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.barcode-benefit-card__icon span,
.barcode-benefit-card__icon::before,
.barcode-benefit-card__icon::after{
	content: "";
	position: absolute;
}

.barcode-benefit-card__icon--lightning span{
	width: 14px;
	height: 26px;
	background: linear-gradient(180deg, #ffd16b 0%, #ff8a33 100%);
	clip-path: polygon(58% 0, 100% 0, 65% 42%, 86% 42%, 36% 100%, 49% 57%, 26% 57%);
}

.barcode-benefit-card__icon--formats::before{
	left: 20px;
	bottom: 18px;
	width: 8px;
	height: 22px;
	border-radius: 3px;
	background: linear-gradient(180deg, #8de58c 0%, #47ba6c 100%);
	box-shadow: 10px -4px 0 0 #8ac2ff, 20px 2px 0 0 #ffd56c;
}

.barcode-benefit-card__icon--formats::after{
	left: 20px;
	top: 17px;
	width: 28px;
	height: 6px;
	border-radius: 999px;
	background: rgba(255,255,255,0.42);
}

.barcode-benefit-card__icon--target::before{
	inset: 18px;
	border: 3px solid #ff6d84;
	border-radius: 50%;
}

.barcode-benefit-card__icon--target::after{
	left: 31px;
	top: 17px;
	width: 3px;
	height: 20px;
	background: #ff6d84;
	border-radius: 999px;
	transform: rotate(36deg);
	transform-origin: bottom center;
	box-shadow: -8px 12px 0 2px #ffcf70;
}

.barcode-benefit-card__title{
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	color: #27426c;
	margin-bottom: 10px;
}

.barcode-benefit-card__description{
	max-width: 280px;
	font-size: 16px;
	line-height: 1.7;
	color: #6f7fa6;
}

.barcode-benefit-card:hover,
.barcode-benefit-card:focus-within{
	transform: translateY(-8px);
	border-color: rgba(45, 151, 234, 0.34);
	box-shadow:
		0 34px 70px rgba(34, 76, 140, 0.14),
		0 2px 0 rgba(255,255,255,0.82) inset;
}

.barcode-benefit-card:hover .barcode-benefit-card__icon,
.barcode-benefit-card:focus-within .barcode-benefit-card__icon{
	transform: scale(1.06);
	box-shadow: 0 20px 34px rgba(27, 128, 214, 0.28);
}

@media (max-width: 1180px){
	.barcode-browser__grid{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

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

@media (max-width: 920px){
	.barcode-generator-page{
		padding-top: 108px;
	}

	.barcode-page-hero{
		padding-top: 32px;
	}

	.barcode-page-hero__title{
		font-size: clamp(40px, 9vw, 56px);
	}

	.barcode-page-hero__copy{
		font-size: 16px;
	}

	.barcode-page-hero__toggle{
		margin-top: 34px;
	}

	.barcode-browser__panel{
		padding: 28px 22px 28px;
		border-radius: 22px;
	}

	.barcode-workspace{
		padding-top: 28px;
	}

	.barcode-benefits{
		padding-top: 32px;
		padding-bottom: 88px;
	}

	.barcode-editor,
	.barcode-actions__generate,
	.barcode-actions__download{
		padding: 28px 22px;
		border-radius: 22px;
	}

	.barcode-browser__grid{
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}
}

@media (max-width: 640px){
	.barcode-generator-page{
		padding-top: 98px;
		padding-bottom: 64px;
	}

	.barcode-page-hero{
		padding: 24px 0 26px;
	}

	.barcode-page-hero__title{
		font-size: 36px;
		letter-spacing: -0.8px;
	}

	.barcode-page-hero__copy{
		font-size: 15px;
	}

	.barcode-page-hero__toggle{
		width: 100%;
		max-width: 260px;
		margin-top: 28px;
		padding: 13px 18px;
	}

	.barcode-browser__title{
		font-size: 30px;
	}

	.barcode-browser__categories{
		gap: 10px;
	}

	.barcode-category{
		width: 100%;
		justify-content: flex-start;
	}

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

	.barcode-card{
		min-height: 0;
	}

	.barcode-benefit-card{
		min-height: 0;
		padding: 28px 22px 26px;
		border-radius: 22px;
	}

	.barcode-editor__label,
	.barcode-actions__download-title{
		font-size: 22px;
	}

	.barcode-actions__title{
		font-size: 28px;
	}

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

	.barcode-preview-panel__frame{
		min-height: 132px;
	}

	.barcode-preview-panel__sample{
		gap: 6px;
		height: 52px;
	}
}

.legal-page{
	padding: 150px 0 90px;
	background:
		radial-gradient(circle at top left, rgba(11, 124, 255, 0.14), transparent 34%),
		linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f6f7fb 100%);
}

.legal-page__shell{
	width: min(960px, calc(100% - 32px));
	margin: 0 auto;
}

.legal-page__hero{
	margin-bottom: 36px;
}

.legal-page__eyebrow{
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(11, 124, 255, 0.1);
	color: #0b5fcc;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.legal-page__title{
	margin: 18px 0 14px;
	font-family: "Merriweather", serif;
	font-size: clamp(38px, 5vw, 56px);
	line-height: 1.08;
	color: #121212;
}

.legal-page__intro{
	max-width: 720px;
	margin: 0;
	font-size: 17px;
	line-height: 1.8;
	color: #5a6270;
}

.legal-page__meta{
	margin-top: 18px;
	font-size: 14px;
	font-weight: 600;
	color: #2e3440;
}

.legal-page__card{
	padding: 38px;
	border: 1px solid rgba(16, 24, 40, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.legal-page__section + .legal-page__section{
	margin-top: 34px;
	padding-top: 34px;
	border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.legal-page__section h2{
	margin: 0 0 12px;
	font-size: 25px;
	line-height: 1.2;
	color: #121212;
}

.legal-page__section p{
	margin: 0 0 14px;
	font-size: 16px;
	line-height: 1.8;
	color: #4d5562;
}

.legal-page__section p:last-child{
	margin-bottom: 0;
}

.legal-page__notes{
	margin-top: 28px;
	padding: 18px 20px;
	border-radius: 18px;
	background: #f4f8ff;
	color: #475467;
	font-size: 14px;
	line-height: 1.7;
}

@media (max-width: 768px){
	.legal-page{
		padding: 122px 0 72px;
	}

	.legal-page__card{
		padding: 26px 22px;
		border-radius: 22px;
	}

	.legal-page__section + .legal-page__section{
		margin-top: 28px;
		padding-top: 28px;
	}
}

.privacy-policy-page{
	padding: 132px 0 90px;
	background:
		radial-gradient(circle at top right, rgba(47, 128, 237, 0.12), transparent 30%),
		linear-gradient(180deg, #eef5fc 0%, #f9fbfe 28%, #f3f6fa 100%);
}

.privacy-policy-page__shell{
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.privacy-hero{
	margin-bottom: 34px;
	border: 1px solid #dce7f4;
	border-radius: 28px;
	background: linear-gradient(180deg, #eef5fc 0%, #f6f9fd 100%);
	box-shadow: 0 18px 50px rgba(29, 58, 112, 0.08);
	overflow: hidden;
}

.privacy-hero__inner{
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 24px;
	align-items: center;
	padding: 56px 32px;
}

.privacy-hero__inner::before,
.privacy-hero__inner::after{
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(47, 128, 237, 0.08);
	pointer-events: none;
}

.privacy-hero__inner::before{
	width: 420px;
	height: 420px;
	right: -120px;
	top: -100px;
}

.privacy-hero__inner::after{
	width: 280px;
	height: 280px;
	left: 46%;
	bottom: -140px;
}

.privacy-hero__text,
.privacy-hero__graphic{
	position: relative;
	z-index: 1;
}

.privacy-hero__eyebrow{
	display: inline-flex;
	align-items: center;
	padding: 9px 15px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid #dce7f4;
	color: #49617c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.privacy-hero__text h1{
	margin: 18px 0;
	font-family: "Merriweather", serif;
	font-size: clamp(36px, 5vw, 56px);
	line-height: 1.08;
	color: #16366b;
}

.privacy-hero__text p{
	max-width: 540px;
	margin: 0 0 14px;
	font-size: 17px;
	line-height: 1.8;
	color: #41556f;
}

.privacy-hero__meta{
	display: inline-block;
	margin-top: 8px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #dce7f4;
	border-radius: 999px;
	color: #49617c;
	font-size: 14px;
	font-weight: 600;
}

.privacy-hero__graphic{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 320px;
}

.privacy-graphic-card{
	position: relative;
	width: 100%;
	max-width: 440px;
	height: 290px;
	border-radius: 28px;
	background: linear-gradient(145deg, #ffffff 0%, #edf5ff 100%);
	border: 1px solid #d7e5f7;
	box-shadow: 0 18px 50px rgba(47, 128, 237, 0.12);
}

.privacy-screen{
	position: absolute;
	left: 50%;
	top: 56%;
	transform: translate(-50%, -50%);
	width: 250px;
	height: 150px;
	background: linear-gradient(180deg, #e7f1ff, #cfe2ff);
	border: 8px solid #1f4f9d;
	border-bottom-width: 16px;
	border-radius: 12px;
}

.privacy-shield{
	position: absolute;
	left: 50%;
	top: 48%;
	transform: translate(-50%, -50%);
	width: 140px;
	height: 165px;
	background: linear-gradient(180deg, #53a7ff, #2670df);
	clip-path: polygon(50% 0%, 95% 18%, 95% 60%, 50% 100%, 5% 60%, 5% 18%);
	border: 6px solid #cde5ff;
	box-shadow: 0 12px 30px rgba(31, 95, 191, 0.24);
}

.privacy-shield::after{
	content: "\2713";
	position: absolute;
	left: 50%;
	top: 44%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 64px;
	font-weight: 700;
}

.privacy-mini-card{
	position: absolute;
	background: #fff;
	border: 1px solid #dce7f4;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(29, 58, 112, 0.08);
}

.privacy-mini-card--one{
	width: 90px;
	height: 60px;
	left: 35px;
	top: 85px;
}

.privacy-mini-card--two{
	width: 90px;
	height: 72px;
	right: 32px;
	top: 88px;
}

.privacy-mini-card--three{
	width: 74px;
	height: 74px;
	right: 58px;
	bottom: 36px;
}

.privacy-mini-card::before,
.privacy-mini-card::after{
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	height: 6px;
	border-radius: 6px;
	background: #d8e8fb;
}

.privacy-mini-card::before{
	top: 16px;
}

.privacy-mini-card::after{
	top: 30px;
}

.privacy-content-section{
	padding-bottom: 32px;
}

.privacy-content-grid{
	display: grid;
	grid-template-columns: 290px 1fr;
	gap: 28px;
	align-items: start;
}

.privacy-sidebar{
	position: sticky;
	top: 116px;
}

.privacy-card{
	background: #fff;
	border: 1px solid #dfe7f1;
	border-radius: 18px;
	box-shadow: 0 10px 28px rgba(29, 58, 112, 0.05);
}

.privacy-toc-card{
	padding: 24px;
}

.privacy-toc-card h2,
.privacy-summary-card h2{
	margin: 0 0 18px;
	font-size: 18px;
	color: #17386c;
}

.privacy-toc-card ul,
.privacy-summary-card ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.privacy-toc-card li + li,
.privacy-summary-card li + li{
	margin-top: 12px;
}

.privacy-toc-card a{
	display: block;
	color: #37506f;
	font-size: 15px;
	transition: 0.2s ease;
}

.privacy-toc-card a:hover{
	color: #2f80ed;
	padding-left: 4px;
}

.privacy-contact-btn{
	display: inline-block;
	width: 100%;
	margin-top: 20px;
	padding: 12px 18px;
	border-radius: 10px;
	background: linear-gradient(180deg, #3e98ff, #2f80ed);
	color: #fff;
	text-align: center;
	font-weight: 600;
}

.privacy-summary-card{
	margin-bottom: 24px;
	padding: 26px 28px;
	background: linear-gradient(180deg, #f9fbfe 0%, #f3f8fd 100%);
}

.privacy-summary-card ul{
	padding-left: 20px;
	list-style: disc;
	color: #5f6f81;
}

.privacy-summary-card li + li{
	margin-top: 6px;
}

.privacy-policy-content{
	padding-bottom: 24px;
}

.privacy-policy-block{
	margin-bottom: 34px;
	padding: 30px;
	border: 1px solid #dfe7f1;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 28px rgba(29, 58, 112, 0.04);
}

.privacy-policy-block h2{
	margin: 0 0 16px;
	font-size: 34px;
	line-height: 1.15;
	color: #17386c;
}

.privacy-policy-block h3{
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.2;
	color: #17386c;
}

.privacy-policy-block p{
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.8;
	color: #51657f;
}

.privacy-policy-block p:last-child{
	margin-bottom: 0;
}

.privacy-policy-block ul{
	margin: 10px 0 16px 22px;
	color: #51657f;
}

.privacy-policy-block li{
	margin-bottom: 8px;
}

.privacy-two-col{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.privacy-mini-section{
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #edf2f8;
}

.privacy-providers-list a{
	color: #2f80ed;
}

@media (max-width: 991px){
	.privacy-policy-page{
		padding-top: 118px;
	}

	.privacy-hero__inner,
	.privacy-content-grid,
	.privacy-two-col{
		grid-template-columns: 1fr;
	}

	.privacy-sidebar{
		position: static;
	}
}

@media (max-width: 600px){
	.privacy-policy-page__shell{
		width: min(100% - 20px, 1180px);
	}

	.privacy-hero__inner{
		padding: 40px 20px;
	}

	.privacy-policy-block,
	.privacy-summary-card,
	.privacy-toc-card{
		padding: 22px 20px;
	}

	.privacy-policy-block h2{
		font-size: 28px;
	}

	.privacy-policy-block h3{
		font-size: 20px;
	}
}

.terms-page{
	padding: 132px 0 90px;
	background:
		radial-gradient(circle at top right, rgba(47, 128, 237, 0.12), transparent 30%),
		linear-gradient(180deg, #eef5fc 0%, #f9fbfe 28%, #f3f6fa 100%);
}

.terms-page__shell{
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.terms-hero{
	margin-bottom: 34px;
	border: 1px solid #dce7f4;
	border-radius: 28px;
	background: linear-gradient(180deg, #eef5fc 0%, #f6f9fd 100%);
	box-shadow: 0 18px 50px rgba(29, 58, 112, 0.08);
	overflow: hidden;
}

.terms-hero__inner{
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 24px;
	align-items: center;
	padding: 56px 32px;
}

.terms-hero__inner::before,
.terms-hero__inner::after{
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(47, 128, 237, 0.08);
	pointer-events: none;
}

.terms-hero__inner::before{
	width: 420px;
	height: 420px;
	right: -120px;
	top: -100px;
}

.terms-hero__inner::after{
	width: 280px;
	height: 280px;
	left: 46%;
	bottom: -140px;
}

.terms-hero__text,
.terms-hero__graphic{
	position: relative;
	z-index: 1;
}

.terms-hero__eyebrow{
	display: inline-flex;
	align-items: center;
	padding: 9px 15px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid #dce7f4;
	color: #49617c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.terms-hero__text h1{
	margin: 18px 0;
	font-family: "Merriweather", serif;
	font-size: clamp(36px, 5vw, 56px);
	line-height: 1.08;
	color: #16366b;
}

.terms-hero__text p{
	max-width: 540px;
	margin: 0 0 14px;
	font-size: 17px;
	line-height: 1.8;
	color: #41556f;
}

.terms-hero__meta{
	display: inline-block;
	margin-top: 8px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #dce7f4;
	border-radius: 999px;
	color: #49617c;
	font-size: 14px;
	font-weight: 600;
}

.terms-hero__graphic{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 320px;
}

.terms-graphic-card{
	position: relative;
	width: 100%;
	max-width: 440px;
	height: 290px;
	border-radius: 28px;
	background: linear-gradient(145deg, #ffffff 0%, #edf5ff 100%);
	border: 1px solid #d7e5f7;
	box-shadow: 0 18px 50px rgba(47, 128, 237, 0.12);
}

.terms-screen{
	position: absolute;
	left: 50%;
	top: 56%;
	transform: translate(-50%, -50%);
	width: 250px;
	height: 150px;
	background: linear-gradient(180deg, #e7f1ff, #cfe2ff);
	border: 8px solid #1f4f9d;
	border-bottom-width: 16px;
	border-radius: 12px;
}

.terms-doc-sheet{
	position: absolute;
	left: 50%;
	top: 48%;
	transform: translate(-50%, -50%);
	width: 150px;
	height: 180px;
	background: linear-gradient(180deg, #53a7ff, #2670df);
	border-radius: 18px;
	border: 6px solid #cde5ff;
	box-shadow: 0 12px 30px rgba(31, 95, 191, 0.24);
}

.terms-doc-sheet::before,
.terms-doc-sheet::after{
	content: "";
	position: absolute;
	left: 24px;
	right: 24px;
	height: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
}

.terms-doc-sheet::before{
	top: 48px;
	box-shadow:
		0 24px 0 rgba(255, 255, 255, 0.9),
		0 48px 0 rgba(255, 255, 255, 0.9);
}

.terms-doc-sheet::after{
	top: 120px;
	width: 46px;
	left: 24px;
	right: auto;
}

.terms-mini-card{
	position: absolute;
	background: #fff;
	border: 1px solid #dce7f4;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(29, 58, 112, 0.08);
}

.terms-mini-card--one{
	width: 90px;
	height: 60px;
	left: 35px;
	top: 85px;
}

.terms-mini-card--two{
	width: 90px;
	height: 72px;
	right: 32px;
	top: 88px;
}

.terms-mini-card--three{
	width: 74px;
	height: 74px;
	right: 58px;
	bottom: 36px;
}

.terms-mini-card::before,
.terms-mini-card::after{
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	height: 6px;
	border-radius: 6px;
	background: #d8e8fb;
}

.terms-mini-card::before{
	top: 16px;
}

.terms-mini-card::after{
	top: 30px;
}

.terms-content-section{
	padding-bottom: 32px;
}

.terms-content-grid{
	display: grid;
	grid-template-columns: 290px 1fr;
	gap: 28px;
	align-items: start;
}

.terms-sidebar{
	position: sticky;
	top: 116px;
}

.terms-card{
	background: #fff;
	border: 1px solid #dfe7f1;
	border-radius: 18px;
	box-shadow: 0 10px 28px rgba(29, 58, 112, 0.05);
}

.terms-toc-card{
	padding: 24px;
}

.terms-toc-card h2,
.terms-summary-card h2{
	margin: 0 0 18px;
	font-size: 18px;
	color: #17386c;
}

.terms-toc-card ul,
.terms-summary-card ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.terms-toc-card li + li,
.terms-summary-card li + li{
	margin-top: 12px;
}

.terms-toc-card a{
	display: block;
	color: #37506f;
	font-size: 15px;
	transition: 0.2s ease;
}

.terms-toc-card a:hover{
	color: #2f80ed;
	padding-left: 4px;
}

.terms-contact-btn{
	display: inline-block;
	width: 100%;
	margin-top: 20px;
	padding: 12px 18px;
	border-radius: 10px;
	background: linear-gradient(180deg, #3e98ff, #2f80ed);
	color: #fff;
	text-align: center;
	font-weight: 600;
}

.terms-summary-card{
	margin-bottom: 24px;
	padding: 26px 28px;
	background: linear-gradient(180deg, #f9fbfe 0%, #f3f8fd 100%);
}

.terms-summary-card ul{
	padding-left: 20px;
	list-style: disc;
	color: #5f6f81;
}

.terms-summary-card li + li{
	margin-top: 6px;
}

.terms-policy-content{
	padding-bottom: 24px;
}

.terms-policy-block{
	margin-bottom: 34px;
	padding: 30px;
	border: 1px solid #dfe7f1;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 28px rgba(29, 58, 112, 0.04);
}

.terms-policy-block h2{
	margin: 0 0 16px;
	font-size: 34px;
	line-height: 1.15;
	color: #17386c;
}

.terms-policy-block h3{
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.2;
	color: #17386c;
}

.terms-policy-block p{
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.8;
	color: #51657f;
}

.terms-policy-block p:last-child{
	margin-bottom: 0;
}

.terms-policy-block ul{
	margin: 10px 0 16px 22px;
	color: #51657f;
}

.terms-policy-block li{
	margin-bottom: 8px;
}

.terms-two-col{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.terms-mini-section{
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #edf2f8;
}

.terms-providers-list a{
	color: #2f80ed;
}

@media (max-width: 991px){
	.terms-page{
		padding-top: 118px;
	}

	.terms-hero__inner,
	.terms-content-grid,
	.terms-two-col{
		grid-template-columns: 1fr;
	}

	.terms-sidebar{
		position: static;
	}
}

@media (max-width: 600px){
	.terms-page__shell{
		width: min(100% - 20px, 1180px);
	}

	.terms-hero__inner{
		padding: 40px 20px;
	}

	.terms-policy-block,
	.terms-summary-card,
	.terms-toc-card{
		padding: 22px 20px;
	}

	.terms-policy-block h2{
		font-size: 28px;
	}

	.terms-policy-block h3{
		font-size: 20px;
	}
}
