* {
  box-sizing: border-box;
}

:root {
  --primary: #00b4d8;
  --secondary: #90e0ef;
  --accent: #06d6a0;
  --text: #023047;
  --muted: #8b9cab;
  --bg: #fff;
  --light: #f8fafb;
  --cream: #fef6f3;
  --soft: #e8f4f8;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all .25s ease;
}

a:hover { color: var(--accent); }

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.col-4 { flex: 0 0 auto; width: 33.33%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-12 { flex: 0 0 auto; width: 100%; }

.g-0 { margin-right: 0; margin-left: 0; }
.g-0 > * { padding-right: 0; padding-left: 0; }

.form-label {
  margin-bottom: .625rem;
  display: block;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--text);
}

.form-control, .form-select {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background: #f9fafb;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all .25s ease;
}

.form-control:focus, .form-select:focus {
  outline: 0;
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.form-control::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 3rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  min-height: 1.5rem;
  padding-left: 0;
  margin-bottom: 1rem;
}

.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: .125rem;
  margin-right: .75rem;
  flex-shrink: 0;
  background: white;
  border: 2px solid #e0e7ee;
  border-radius: 5px;
  appearance: none;
  cursor: pointer;
  transition: all .25s ease;
}

.form-check-input:checked {
  background: var(--primary);
  border-color: var(--primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-label {
  cursor: pointer;
  font-size: .9375rem;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: none;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: 50px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-lg {
  padding: 1.15rem 2.75rem;
  font-size: 1.0625rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0096c7 0%, var(--primary) 100%);
  color: white;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #05c799 100%);
  color: white;
}

.btn-light {
  background: white;
  color: var(--text);
  border: 2px solid #e0e7ee;
}

.btn-light:hover {
  background: var(--light);
  border-color: var(--primary);
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: .5rem;
  padding-bottom: .5rem;
  margin-right: 1.5rem;
  font-size: 1.5rem;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: -.02em;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: .5rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 2px solid #e0e7ee;
  border-radius: 10px;
  transition: all .25s ease;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23023047' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  display: block;
  padding: .75rem 1rem;
  transition: color .25s ease;
  font-weight: 500;
}

.collapse:not(.show) { display: none; }

.badge {
  display: inline-block;
  padding: .5rem 1.125rem;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.object-fit-cover { object-fit: cover; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.order-1 { order: 1 !important; }
.order-2 { order: 2 !important; }

.m-0 { margin: 0 !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: .75rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }
.ms-auto { margin-left: auto !important; }
.me-2 { margin-right: .75rem !important; }
.me-3 { margin-right: 1rem !important; }

.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 2rem !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.ps-4 { padding-left: 1.5rem !important; }

.fw-bold { font-weight: 700 !important; }
.text-start { text-align: left !important; }
.text-center { text-align: center !important; }
.text-end { text-align: right !important; }
.text-uppercase { text-transform: uppercase !important; }
.rounded { border-radius: 20px !important; }
.rounded-2 { border-radius: 20px !important; }
.rounded-3 { border-radius: 24px !important; }
.border-start { border-left: 1px solid !important; }
.border-2 { border-width: 2px !important; }
.border-3 { border-width: 3px !important; }
.border-4 { border-width: 4px !important; }
.small { font-size: .9375rem; }

@media (min-width: 576px) {
  .container { max-width: 540px; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.33%; }
  .col-md-5 { flex: 0 0 auto; width: 41.66%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.33%; }
  .col-md-8 { flex: 0 0 auto; width: 66.66%; }
  .mb-md-0 { margin-bottom: 0 !important; }
  .text-md-start { text-align: left !important; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66%; }
  .offset-lg-1 { margin-left: 8.33%; }
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
  
  .navbar-expand-lg { flex-wrap: nowrap; justify-content: flex-start; }
  .navbar-expand-lg .navbar-nav { flex-direction: row; }
  .navbar-expand-lg .navbar-nav .nav-link { padding-right: 1rem; padding-left: 1rem; }
  .navbar-expand-lg .navbar-collapse { display: flex !important; flex-basis: auto; }
  .navbar-expand-lg .navbar-toggler { display: none; }
  
  .mb-lg-0 { margin-bottom: 0 !important; }
  .py-lg-6 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

.bg-primary { background: var(--primary) !important; }
.bg-light { background: var(--light) !important; }
.bg-white { background: var(--bg) !important; }
.bg-soft { background: var(--soft) !important; }
.bg-cream { background: var(--cream) !important; }
.bg-accent { background: var(--accent) !important; }

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--muted) !important; }
.text-muted { color: var(--muted) !important; }
.text-white { color: #fff !important; }
.text-accent { color: var(--accent) !important; }

.border-primary { border-color: var(--primary) !important; }
.border-accent { border-color: var(--accent) !important; }

.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: .9375rem;
}

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

.hero-wrap {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.03) 0%, rgba(6, 214, 160, 0.03) 100%);
  padding: 4rem 0 3rem;
  overflow: hidden;
  position: relative;
}

.hero-wrap::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -12%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-img-container {
  position: relative;
}

.hero-img-container::after {
  content: '';
  position: absolute;
  bottom: -8%;
  left: -8%;
  width: 35%;
  height: 35%;
  background: var(--accent);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.15;
}

.hero-main-img {
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.11);
  transform: perspective(1000px) rotateY(-2deg);
  transition: all .4s ease;
}

.hero-main-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.service-box {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  transition: all .35s ease;
  border: 2px solid transparent;
  position: relative;
}

.service-box::after {
  content: '';
  position: absolute;
  top: -45%;
  right: -40%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
  border-color: var(--secondary);
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft) 0%, white 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: var(--primary);
  box-shadow: 0 6px 22px rgba(0, 180, 216, 0.13);
  transition: all .32s ease;
  margin-bottom: 1.25rem;
}

.service-box:hover .icon-circle {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 180, 216, 0.18);
}

.stats-number {
  font-size: clamp(2.5rem, 5vw, 3.85rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg-blue {
  background: linear-gradient(135deg, #caf0f8 0%, #e8f4f8 100%);
  position: relative;
}

.gradient-bg-teal {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.step-item {
  border-left: 3px solid;
  padding-left: 1.35rem;
  position: relative;
}

.step-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 2px;
  width: 11px;
  height: 11px;
  background: currentColor;
  border-radius: 50%;
}

.cookie-modal {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 11px 45px rgba(0, 0, 0, 0.14);
  z-index: 9999;
  padding: 1.65rem;
  max-width: 485px;
  animation: slideIn .38s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-btn {
  padding: .7rem 1.45rem;
  border-radius: 50px;
  font-size: .9375rem;
  font-weight: 600;
  margin: .35rem .2rem;
  border: none;
  cursor: pointer;
  transition: all .28s ease;
}

.cookie-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.cookie-secondary {
  background: var(--light);
  color: var(--text);
}

.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 11px rgba(0, 0, 0, 0.09);
}

footer {
  background: linear-gradient(135deg, #012a3a 0%, #023047 100%);
  color: rgba(255, 255, 255, 0.78);
}

footer h5, footer h6 { color: white; }
footer a { color: rgba(255, 255, 255, 0.68); transition: color .24s ease; }
footer a:hover { color: white; }

.bi { vertical-align: middle; }

.decor-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.split-section {
  padding: 0;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.split-content {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-wrap { padding: 2.5rem 0; }
  .hero-main-img { transform: perspective(1000px) rotateY(0); }
  .split-img { min-height: 350px; }
}

@media (max-width: 767px) {
  .cookie-modal { left: 8px; right: 8px; bottom: 8px; padding: 1.15rem; }
  .cookie-btn { width: 100%; margin: .22rem 0; }
  .stats-number { font-size: 2.4rem; }
  .split-img { min-height: 280px; }
}



.blog-article {
  line-height: 1.75;
}

.blog-article h2 {
  color: var(--text);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  margin-bottom: 1.25rem;
}

.blog-article p {
  margin-bottom: 1.125rem;
  color: var(--text);
  font-size: 1.0625rem;
}

.blog-article p:last-child {
  margin-bottom: 0;
}


.service-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--soft) 0%, white 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  box-shadow: 0 6px 22px rgba(0, 180, 216, 0.12);
  margin-bottom: 1.25rem;
}


.thankyou-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #caf0f8 0%, #e8f4f8 100%);
}

.thankyou-content {
  max-width: 580px;
  text-align: center;
}

.thankyou-icon {
  font-size: 4.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: scaleIn .5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.policy-content h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.policy-content p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

.policy-content strong {
  font-weight: 600;
  color: var(--text);
}


.value-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft) 0%, white 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  color: var(--primary);
  box-shadow: 0 7px 24px rgba(0, 180, 216, 0.14);
  transition: all .3s ease;
}

.value-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.18);
}


@media (max-width: 768px) {
  .blog-article h2 {
    font-size: 1.625rem;
  }
  
  .blog-article {
    padding-bottom: 2rem !important;
    margin-bottom: 2rem !important;
  }
  
  .service-icon-box,
  .value-icon {
    width: 65px;
    height: 65px;
    font-size: 1.625rem;
  }
  
  .thankyou-icon {
    font-size: 3.5rem;
  }
}

/* Asymmetric Pricing Layout */
.pricing-asymmetric-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.pricing-featured-main {
  position: relative;
}

.featured-label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  z-index: 2;
  letter-spacing: 0.3px;
}

.pricing-card-modern {
  background: white;
  border-radius: 28px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.pricing-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.featured-card {
  border-color: rgba(6, 214, 160, 0.2);
  box-shadow: 0 16px 56px rgba(6, 214, 160, 0.15);
}

.featured-card:hover {
  border-color: var(--accent);
  box-shadow: 0 28px 72px rgba(6, 214, 160, 0.22);
}

.compact-card {
  padding: 2rem 1.875rem;
}

.pricing-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.625rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pricing-card-modern:hover .pricing-icon-badge {
  transform: scale(1.1) rotate(5deg);
}

.pricing-value-display {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.04) 0%, rgba(6, 214, 160, 0.04) 100%);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  border: 2px solid rgba(0, 180, 216, 0.08);
}

.pricing-value-display.compact {
  padding: 1.25rem 1.125rem;
  border-radius: 16px;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted);
  margin-right: 0.25rem;
}

.pricing-amount {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 1.125rem;
  color: var(--muted);
  margin-left: 0.25rem;
  font-weight: 600;
}

.pricing-save-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.15) 0%, rgba(6, 214, 160, 0.08) 100%);
  color: #059669;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 1rem;
  border: 2px solid rgba(6, 214, 160, 0.2);
}

.pricing-save-badge.small {
  padding: 0.4rem 0.875rem;
  font-size: 0.8125rem;
  margin-top: 0.75rem;
}

.pricing-features-enhanced {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features-enhanced.compact {
  gap: 0.75rem;
}

.feature-item-modern {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.625rem 0;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.feature-item-modern.small {
  font-size: 0.9375rem;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.feature-item-modern i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, #05c799 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.6875rem;
  box-shadow: 0 3px 10px rgba(6, 214, 160, 0.25);
}

.feature-item-modern.small i {
  width: 20px;
  height: 20px;
  font-size: 0.625rem;
}

.pricing-secondary-stack {
  display: flex;
  flex-direction: column;
}

/* Responsive Design */
@media (max-width: 991px) {
  .pricing-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .pricing-featured-main {
    order: 1;
  }
  
  .pricing-secondary-stack {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card-modern.compact-card {
    margin-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .pricing-asymmetric-grid {
    gap: 2rem;
  }
  
  .pricing-secondary-stack {
    grid-template-columns: 1fr;
  }
  
  .pricing-card-modern {
    padding: 2rem 1.75rem;
  }
  
  .compact-card {
    padding: 1.75rem 1.5rem;
  }
  
  .pricing-amount {
    font-size: 3rem;
  }
  
  .pricing-icon-badge {
    width: 56px;
    height: 56px;
    font-size: 1.375rem;
  }
  
  .featured-label {
    font-size: 0.8125rem;
    padding: 0.5rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.666%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .offset-md-1 { margin-left: 8.333%; }
  .p-md-5 { padding: 2rem !important; }
  .py-lg-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
}

@media (min-width: 992px) {
  .container { max-width: 980px; }
  .col-lg-4 { flex: 0 0 auto; width: 33.333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.666%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666%; }
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
  .offset-lg-1 { margin-left: 8.333%; }
  .mb-lg-0 { margin-bottom: 0 !important; }
  .p-lg-5 { padding: 3rem !important; }
  .g-4 { margin-right: -0.75rem; margin-left: -0.75rem; }
  .g-4 > * { padding-right: 0.75rem; padding-left: 0.75rem; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}