 :root {
     --primary: #A61617;
     --primary-dark: #D36509;
     --secondary: #b78cff;
     --accent: #f3c969;
     --dark: #0B072D;
     --dark-soft: #211d3a;
     --text: #5e5a70;
     --light: #f8f6ff;
     --white: #ffffff;
     --border: rgba(118, 87, 217, 0.14);
     --gradient: linear-gradient(135deg, #A61617 0%, #9c6df0 45%, #A1468E 100%);
     --shadow: 0 20px 60px rgba(45, 31, 91, 0.13);
 }

 * {
     box-sizing: border-box;
 }

 html,
 body {
     overflow-x: hidden;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     margin: 0;
     font-family: 'Times New Roman', Times, serif;
     color: var(--text);
     background: var(--white);
     line-height: 1.7;
     padding-top: 68px;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: "Playfair Display", serif;
     color: var(--dark);
     line-height: 1.2;
 }

 a {
     text-decoration: none;
 }

 p {
     font-size: 1.3rem !important;
 }

 .section-padding {
     padding: 90px 0;
 }

 .section-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 8px 16px;
     border-radius: 50px;
     background: rgba(118, 87, 217, 0.09);
     color: var(--primary);
     font-size: 13px;
     font-weight: 700;

     text-transform: uppercase;
     margin-bottom: 18px;
 }

 .section-title {
     font-size: clamp(34px, 5vw, 52px);
     font-weight: 800;
     margin-bottom: 18px;
 }

 .section-description {
     max-width: 720px;
     margin: 0 auto;
     font-size: 17px;
     color: var(--text);
 }

 .btn-primary-custom {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 15px 28px;
     border-radius: 50px;
     border: 0;
     color: #fff;
     background: var(--gradient);
     font-size: 16px;
     font-weight: 700;
     box-shadow: 0 12px 30px rgba(118, 87, 217, .28);
     transition: all .3s ease;
 }

 .btn-primary-custom:hover {
     color: #fff;
     transform: translateY(-3px);
     box-shadow: 0 18px 35px rgba(118, 87, 217, .35);
 }

 .btn-outline-custom {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 14px 27px;
     border-radius: 50px;
     border: 1px solid rgba(118, 87, 217, .3);
     color: var(--primary);
     background: #fff;
     font-weight: 700;
     transition: all .3s ease;
 }

 .btn-outline-custom:hover {
     color: #fff;
     background: var(--primary);
     border-color: var(--primary);
 }

 /* Navbar */
 .main-navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 999;
     padding: 15px 0;
     transition: all .3s ease;
     background: rgba(255, 255, 255, .92);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
 }

 .main-navbar.scrolled {
     background: rgba(255, 255, 255, .96);
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
     box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
 }

 .navbar-brand {
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--dark) !important;
     font-weight: 800;
     font-size: 20px;
 }

 .brand-icon {
     width: 42px;
     height: 42px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 12px;
     color: #fff;
     background: var(--gradient);
     box-shadow: 0 8px 20px rgba(118, 87, 217, .25);
 }

 .navbar-nav .nav-link {
     color: var(--dark);
     font-size: 18px;
     font-weight: 600;
     margin: 0 7px;
     transition: color .3s ease;
 }

 .navbar-nav .nav-link:hover {
     color: var(--primary);
 }

 /* Hero */
 .hero-section {
     position: relative;
     overflow: hidden;
     min-height: 850px;
     padding: 100px 0 110px;
     display: flex;
     align-items: center;
     background:
         radial-gradient(circle at 85% 25%, rgba(183, 140, 255, .25), transparent 30%),
         radial-gradient(circle at 15% 80%, rgba(243, 201, 105, .12), transparent 28%),
         linear-gradient(135deg, #fbfaff 0%, #f4f0ff 100%);
 }

 .hero-section::before {
     content: "";
     position: absolute;
     width: 450px;
     height: 450px;
     right: -180px;
     top: 80px;
     border-radius: 50%;
     background: rgba(183, 140, 255, .13);
     filter: blur(10px);
 }

 .hero-section::after {
     content: "";
     position: absolute;
     width: 260px;
     height: 260px;
     left: -100px;
     bottom: 20px;
     border-radius: 50%;
     background: rgba(243, 201, 105, .10);
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 9px 17px;
     margin-bottom: 22px;
     border-radius: 50px;
     color: var(--primary-dark);
     background: rgba(118, 87, 217, .1);
     border: 1px solid rgba(118, 87, 217, .12);
     font-size: 13px;
     font-weight: 700;
 }

 .hero-title {
     font-size: clamp(46px, 6vw, 56px);
     font-weight: 800;

     margin-bottom: 24px;
 }

 .hero-title span {
     color: var(--primary);
 }

 .hero-description {
     color: #625d73;
     margin-bottom: 32px;
 }

 .hero-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 13px;
     margin-bottom: 30px;
 }

 .hero-note {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 18px;
     color: #777286;
 }

 .hero-note i {
     color: var(--primary);
 }

 .hero-visual {
     position: relative;
     z-index: 2;
 }

 .hero-card {
     position: relative;
     padding: 35px;
     border-radius: 30px;
     background: rgba(255, 255, 255, .76);
     border: 1px solid rgba(255, 255, 255, .9);
     box-shadow: var(--shadow);
     backdrop-filter: blur(15px);
 }

 .frequency-orb {
     width: 410px;
     height: 410px;
     margin: 0 auto 25px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     background:
         radial-gradient(circle,
             rgba(255, 255, 255, 1) 0%,
             rgba(183, 140, 255, .65) 22%,
             rgba(118, 87, 217, .42) 45%,
             rgba(118, 87, 217, .12) 65%,
             transparent 70%);
     position: relative;
 }

 .frequency-orb::before,
 .frequency-orb::after {
     content: "";
     position: absolute;
     border: 1px solid rgba(118, 87, 217, .3);
     border-radius: 50%;
     animation: pulse 3s infinite ease-in-out;
 }

 .frequency-orb::before {
     width: 220px;
     height: 220px;
 }

 .frequency-orb::after {
     width: 300px;
     height: 300px;
     animation-delay: .8s;
 }

 .orb-center {
     width: 215px;
     height: 215px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     color: #fff;
     background: var(--gradient);
     box-shadow: 0 15px 40px rgba(118, 87, 217, .35);
     object-fit: cover;
 }

 .protocalimg {
     border-radius: 50%;
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(.92);
         opacity: .35;
     }

     50% {
         transform: scale(1.05);
         opacity: .8;
     }
 }

 .hero-card-title {
     text-align: center;
     font-size: 25px;
     font-weight: 700;
     margin-bottom: 8px;
 }

 .hero-card-text {
     text-align: center;
     font-size: 14px;
     margin-bottom: 0;
 }

 /* Trust Strip */
 .trust-strip {
     position: relative;
     z-index: 5;
     margin-top: -45px;
 }

 .trust-box {
     padding: 24px 30px;
     border-radius: 20px;
     background: #fff;
     box-shadow: var(--shadow);
     border: 1px solid var(--border);
 }

 .trust-item {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     color: var(--dark);
     font-size: 14px;
     font-weight: 700;
 }

 .trust-item i {
     color: var(--primary);
     font-size: 19px;
 }

 /* Mobile */
 @media (max-width: 991px) {
     .main-navbar {
         background: rgba(255, 255, 255, .96);
     }

     .hero-section {
         min-height: auto;
         padding: 65px 0 90px;
     }

     .hero-content {

         margin-bottom: 50px;
     }

     .hero-description {
         margin-left: auto;
         margin-right: auto;
     }

     .hero-actions {
         justify-content: center;
     }

     .hero-note {
         justify-content: center;
     }

     .hero-visual {
         max-width: 560px;
         margin: auto;
     }

     .navbar-brand {
         font-size: 15px;
     }

     h1 {
         font-size: 1.9rem !important;
     }

     h2 {
         font-size: 1.7rem !important;
     }
 }

 @media (max-width: 575px) {
     .section-padding {
         padding: 65px 0;
     }

     .hero-section {
         padding-top: 65px;
     }

     .hero-title {
         font-size: 42px;
     }

     .hero-description {
         font-size: 16px;
     }

     .hero-actions .btn-primary-custom,
     .hero-actions .btn-outline-custom {
         width: 100%;
     }

     .hero-card {
         padding: 22px;
     }

     .frequency-orb {
         width: 240px;
         height: 240px;
     }

     .frequency-orb::after {
         width: 215px;
         height: 215px;
     }

     .frequency-orb::before {
         width: 170px;
         height: 170px;
     }
 }




 .step2-intro-section {
     position: relative;
     overflow: hidden;
     padding: 110px 0;
     background:
         radial-gradient(circle at 15% 20%, rgba(183, 140, 255, .13), transparent 28%),
         radial-gradient(circle at 85% 80%, rgba(118, 87, 217, .08), transparent 30%),
         #ffffff;
 }

 .step2-bg-orb {
     position: absolute;
     border-radius: 50%;
     pointer-events: none;
 }

 .step2-bg-orb-1 {
     width: 300px;
     height: 300px;
     top: -160px;
     right: 10%;
     background: rgba(183, 140, 255, .09);
     filter: blur(5px);
 }

 .step2-bg-orb-2 {
     width: 240px;
     height: 240px;
     bottom: -130px;
     left: 5%;
     background: rgba(243, 201, 105, .07);
     filter: blur(10px);
 }

 .step2-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     margin-bottom: 18px;
     color: #A61617;
     font-size: 12px;
     font-weight: 800;

     text-transform: uppercase;
 }

 .step2-eyebrow-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #A61617;
     box-shadow: 0 0 0 5px rgba(118, 87, 217, .10);
 }

 .step2-content h2 {
     margin-bottom: 24px;
     font-size: clamp(35px, 5vw, 48px);
     font-weight: 800;

 }

 .step2-content h2 span,
 .protocol-heading h2 span,
 .protocol-feature-content h3 span,
 .why-heading h2 span {
     color: #A61617;
 }

 .step2-content p {

     color: #676274;
     font-size: 16px;
 }

 .step2-content .step2-lead {
     font-size: 18px;
     line-height: 1.75;
     color: #514c60;
     margin-bottom: 17px;
 }

 .step2-check-list {
     margin-top: 30px;
 }

 .step2-check-item {
     display: flex;
     gap: 15px;
     padding: 15px 0;
     border-bottom: 1px solid rgba(118, 87, 217, .10);
 }

 .step2-check-item:last-child {
     border-bottom: 0;
 }

 .step2-check-icon {
     width: 42px;
     min-width: 42px;
     height: 42px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 12px;
     color: #A61617;
     background: #f1edff;
 }

 .step2-check-item strong {
     display: block;
     margin-bottom: 3px;
     color: #18142a;
     font-size: 18px;
 }

 .step2-check-item span {
     display: block;
     color: #777284;
     font-size: 18px;
     line-height: 1.5;
 }

 /* Frequency Visual */
 .step2-visual {
     min-height: 570px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .step2-glow {
     position: absolute;
     width: 390px;
     height: 390px;
     border-radius: 50%;
     background: rgba(118, 87, 217, .12);
     filter: blur(35px);
 }

 .step2-orbit {
     position: absolute;
     border: 1px solid rgba(118, 87, 217, .18);
     border-radius: 50%;
     animation: orbitPulse 4s ease-in-out infinite;
 }

 .orbit-large {
     width: 450px;
     height: 450px;
 }

 .orbit-medium {
     width: 340px;
     height: 340px;
     animation-delay: .5s;
 }

 .orbit-small {
     width: 220px;
     height: 220px;
     animation-delay: 1s;
 }

 @keyframes orbitPulse {

     0%,
     100% {
         transform: scale(.96);
         opacity: .4;
     }

     50% {
         transform: scale(1.04);
         opacity: .8;
     }
 }

 .step2-core {
     position: relative;
     z-index: 5;
     width: 400px;
     height: 400px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     background: linear-gradient(135deg, #A61617, #b78cff);
     box-shadow:
         0 25px 60px rgba(118, 87, 217, .35),
         0 0 0 15px rgba(118, 87, 217, .06);
 }

 .step2-core-inner {
     width: 284px;
     height: 284px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     color: #fff;
     background: rgba(255, 255, 255, .14);
     border: 1px solid rgba(255, 255, 255, .35);
     font-size: 32px;
 }

 .step2-node {
     position: absolute;
     z-index: 10;
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 9px 14px;
     border-radius: 50px;
     background: #fff;
     color: #201b32;
     box-shadow: 0 12px 30px rgba(49, 34, 91, .12);
     font-size: 18px;
     font-weight: 700;
 }

 .step2-node i {
     color: #A61617;
     font-size: 0.95rem;
 }

 .node-top {
     top: 30px;
     left: 50%;
     transform: translateX(-50%);
 }

 .node-right {
     right: 5px;
     top: 50%;
     transform: translateY(-50%);
 }

 .node-bottom {
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
 }

 .node-left {
     left: 5px;
     top: 50%;
     transform: translateY(-50%);
 }

 .step2-floating-card {
     position: absolute;
     z-index: 15;
     display: flex;
     align-items: center;
     gap: 11px;
     padding: 13px 17px;
     border: 1px solid rgba(118, 87, 217, .10);
     border-radius: 16px;
     background: rgba(255, 255, 255, .92);
     box-shadow: 0 18px 40px rgba(42, 30, 77, .12);
     backdrop-filter: blur(15px);
     font-size: 18px;
 }

 .floating-icon {
     width: 38px;
     height: 38px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 11px;
     color: #A61617;
     background: #f1edff;
 }

 .step2-floating-card strong {
     display: block;
     color: #211c32;
     font-size: 18px;
 }

 .step2-floating-card small {
     display: block;
     color: #777184;
     font-size: 18px;
 }

 .card-top {
     top: 100px;
     right: -10px;
 }

 .card-bottom {
     bottom: 95px;
     left: -10px;
 }

 /* Protocol */
 .protocol-premium-section {
     position: relative;
     overflow: hidden;
     padding: 110px 0;
     background: #f8f6ff;
 }

 .protocol-heading {
     max-width: 1060px;
     margin: 0 auto 55px;
 }

 .protocol-heading h2 {
     margin-bottom: 18px;
     font-size: clamp(36px, 5vw, 55px);
     font-weight: 800;
 }

 .protocol-heading p {
     margin: 0 auto;
     color: #696375;
     font-size: 16px;

 }

 .protocol-feature-card {
     display: grid;
     grid-template-columns: .9fr 1.1fr;
     align-items: center;
     overflow: hidden;
     border-radius: 30px;
     background: #fff;
     border: 1px solid rgba(118, 87, 217, .10);
     box-shadow: 0 25px 70px rgba(55, 39, 105, .10);
 }

 .protocol-feature-visual {
     min-height: 500px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     background:
         radial-gradient(circle, rgba(183, 140, 255, .35), transparent 65%),
         linear-gradient(145deg, #eee8ff, #f8f6ff);
 }

 .protocol-ring {
     position: absolute;
     border: 1px solid rgba(118, 87, 217, .20);
     border-radius: 50%;
 }

 .ring-1 {
     width: 360px;
     height: 360px;
 }

 .ring-2 {
     width: 270px;
     height: 270px;
 }

 .ring-3 {
     width: 180px;
     height: 180px;
 }

 .protocol-center {
     position: relative;
     z-index: 5;
     width: 305px;
     height: 305px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     color: #fff;
     background: linear-gradient(135deg, #A61617, #b78cff);
     box-shadow: 0 20px 45px rgba(118, 87, 217, .35);
     font-size: 30px;

 }

 .protocol-mini-label {
     position: absolute;
     z-index: 8;
     display: flex;
     align-items: center;
     gap: 7px;
     padding: 8px 12px;
     border-radius: 50px;
     color: #272139;
     background: #fff;
     box-shadow: 0 10px 25px rgba(45, 31, 91, .10);
     font-size: 11px;
     font-weight: 700;
 }

 .protocol-mini-label i {
     color: #A61617;
 }

 .label-1 {
     top: 75px;
     left: 50%;
     transform: translateX(-50%);
 }

 .label-2 {
     right: 35px;
     top: 50%;
     transform: translateY(-50%);
 }

 .label-3 {
     bottom: 75px;
     left: 50%;
     transform: translateX(-50%);
 }

 .protocol-feature-content {
     padding: 60px;
 }

 .protocol-small-label {
     display: block;
     margin-bottom: 13px;
     color: #A61617;
     font-size: 11px;
     font-weight: 800;

 }

 .protocol-feature-content h3 {
    
     margin-bottom: 20px;
     font-size: 37px;
     font-weight: 800;
 }

 .protocol-feature-content p {
     color: #6c6876;
     font-size: 15px;
 }

 .protocol-points {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 13px;
     margin-top: 28px;
 }

 .protocol-points div {
     display: flex;
     align-items: center;
     gap: 8px;
     color: #302a40;
     font-size: 18px;
     font-weight: 600;
 }

 .protocol-points i {
     color: #A61617;
 }

 /* Why Different */
 .why-different-section {
     padding: 110px 0;
     background: #fff;
 }

 .why-heading {
     max-width: 1060px;
     margin: 0 auto 55px;
 }

 .why-heading h2 {
     margin-bottom: 18px;
     font-size: clamp(36px, 5vw, 55px);
     font-weight: 800;
 }

 .why-heading p {
   
     margin: auto;
     color: #6c6876;
 }

 .why-card {
     position: relative;
     height: 100%;
     padding: 30px;
     overflow: hidden;
     border-radius: 23px;
     border: 1px solid rgba(118, 87, 217, .11);
     background: #fff;
     box-shadow: 0 15px 40px rgba(45, 31, 91, .06);
     transition: all .35s ease;
 }

 .why-card:hover {
     transform: translateY(-9px);
     box-shadow: 0 25px 55px rgba(45, 31, 91, .12);
     border-color: rgba(118, 87, 217, .25);
 }

 .why-card-top {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     margin-bottom: 25px;
 }

 .why-card-top>span {
     color: rgba(118, 87, 217, .18);
     font-family: "Playfair Display", serif;
     font-size: 36px;
     font-weight: 800;
 }

 .why-icon {
     width: 54px;
     height: 54px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 15px;
     color: #A61617;
     background: #f2efff;
     font-size: 19px;
 }

 .why-card h3 {
     margin-bottom: 12px;
     font-size: 23px;
     font-weight: 800;
 }

 .why-card p {
     min-height: 105px;
     margin-bottom: 20px;
     color: #706b7b;
     font-size: 14px;
 }

 .why-card-line {
     width: 100%;
     height: 1px;
     margin-bottom: 13px;
     background: rgba(118, 87, 217, .10);
 }

 .why-card small {
     color: #A61617;
     font-size: 11px;
     font-weight: 800;
     text-transform: uppercase;

 }

 /* Transition */
 .step2-transition {
     padding: 0 0 100px;
     background: #fff;
 }

 .transition-card {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 30px;
     overflow: hidden;
     padding: 45px 50px;
     border-radius: 28px;
     background: #211b36;
     box-shadow: 0 25px 60px rgba(36, 25, 67, .17);
 }

 .transition-glow {
     position: absolute;
     width: 350px;
     height: 350px;
     top: -220px;
     right: 10%;
     border-radius: 50%;
     background: rgba(183, 140, 255, .25);
     filter: blur(25px);
 }

 .transition-content {
     position: relative;
     z-index: 2;
 }

 .transition-content>span {
     display: block;
     margin-bottom: 10px;
     color: #c9adff;
     font-size: 11px;
     font-weight: 800;

     text-transform: uppercase;
 }

 .transition-content h2 {
     margin-bottom: 10px;
     color: #fff;
     font-size: 30px;
     font-weight: 700;
 }

 .transition-content h2 strong {
     color: #c9adff;
 }

 .transition-content p {
     margin: 0;
     color: #bcb5cc;
     font-size: 14px;
 }

 .transition-button {
     position: relative;
     z-index: 2;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 14px 23px;
     border-radius: 50px;
     color: #241d38;
     background: #fff;
     font-size: 14px;
     font-weight: 800;
     white-space: nowrap;
     transition: all .3s ease;
 }

 .transition-button:hover {
     color: #fff;
     background: #A61617;
     transform: translateY(-3px);
 }

 @media (max-width: 991px) {

     .step2-intro-section,
     .protocol-premium-section,
     .why-different-section {
         padding: 80px 0;
     }

     .step2-visual {
         min-height: 500px;
         margin-top: 20px;
     }

     .protocol-feature-card {
         grid-template-columns: 1fr;
     }

     .protocol-feature-content {
         padding: 40px;
     }

     .transition-card {
         align-items: flex-start;
         flex-direction: column;
     }
 }

 @media (max-width: 575px) {

     .step2-intro-section,
     .protocol-premium-section,
     .why-different-section {
         padding: 65px 0;
     }



     .step2-visual {
         min-height: 390px;
     }

     .step2-glow {
         width: 280px;
         height: 280px;
     }

     .orbit-large {
         width: 310px;
         height: 310px;
     }

     .orbit-medium {
         width: 235px;
         height: 235px;
     }

     .orbit-small {
         width: 155px;
         height: 155px;
     }

     .step2-core {
         width: auto;
         height: auto;
     }

     .step2-core-inner {
         width: auto;
         height: auto;
         font-size: 23px;
     }

     .node-right {
         right: -5px;
     }

     .node-left {
         left: -5px;
     }

     .card-top {
         right: -5px;
         top: 65px;
     }

     .card-bottom {
         left: -5px;
         bottom: 55px;
     }

     .protocol-feature-visual {
         min-height: 390px;
     }

     .ring-1 {
         width: 280px;
         height: 280px;
     }

     .ring-2 {
         width: 210px;
         height: 210px;
     }

     .ring-3 {
         width: 140px;
         height: 140px;
     }

     .protocol-feature-content {
         padding: 30px 22px;
     }

     .protocol-feature-content h3 {
         font-size: 29px;
     }

     .protocol-points {
         grid-template-columns: 1fr;
     }

     .why-card {
         padding: 25px;
     }

     .why-card p {
         min-height: auto;
     }

     .transition-card {
         padding: 32px 24px;
     }



     .transition-button {
         width: 100%;
         justify-content: center;
     }

     .step2-floating-card {
         display: none;
     }
 }






 .step2-reveal {
     opacity: 0;
     transform: translateY(35px);
     transition:
         opacity .8s ease,
         transform .8s ease;
 }

 .step2-reveal-visible {
     opacity: 1;
     transform: translateY(0);
 }

 .why-card:nth-child(2) {
     transition-delay: .08s;
 }

 .why-card:nth-child(3) {
     transition-delay: .16s;
 }

 .why-card:nth-child(4) {
     transition-delay: .24s;
 }



 .benefit-hidden {
     opacity: 0;
     transform: translateY(30px);
     transition:
         opacity .7s ease,
         transform .7s ease,
         box-shadow .35s ease,
         border-color .35s ease;
 }

 .benefit-visible {
     opacity: 1;
     transform: translateY(0);
 }


 .core-benefits-section {
     position: relative;
     overflow: hidden;
     padding: 115px 0 100px;
     background:
         radial-gradient(circle at 10% 10%,
             rgba(183, 140, 255, .12),
             transparent 27%),
         radial-gradient(circle at 90% 45%,
             rgba(118, 87, 217, .08),
             transparent 30%),
         #faf9ff;
 }

 .benefits-bg-shape {
     position: absolute;
     border-radius: 50%;
     pointer-events: none;
 }

 .benefits-shape-one {
     width: 350px;
     height: 350px;
     top: -220px;
     right: 12%;
     background: rgba(183, 140, 255, .09);
     filter: blur(20px);
 }

 .benefits-shape-two {
     width: 280px;
     height: 280px;
     bottom: -180px;
     left: 5%;
     background: rgba(243, 201, 105, .06);
     filter: blur(20px);
 }

 .benefits-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     margin-bottom: 18px;
     color: #A61617;
     font-size: 12px;
     font-weight: 800;

     text-transform: uppercase;
 }

 .benefits-eyebrow span {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #A61617;
     box-shadow: 0 0 0 5px rgba(118, 87, 217, .10);
 }

 .benefits-main-title {
     margin-bottom: 20px;
     color: #19152b;
     font-size: clamp(38px, 5vw, 58px);
     font-weight: 800;

     line-height: 1.12;
 }

 .benefits-main-title strong {
     
     color: #A61617;
 }

 .benefits-intro {
    
     margin: auto;
     color: #6b6677;
     font-size: 17px;
     line-height: 1.8;
 }

 /* Benefit Cards */
 .benefit-premium-card {
     position: relative;
     height: 100%;
     overflow: hidden;
     padding: 31px;
     border: 1px solid rgba(118, 87, 217, .11);
     border-radius: 24px;
     background: rgba(255, 255, 255, .92);
     box-shadow: 0 12px 35px rgba(48, 35, 88, .055);
     transition:
         transform .35s ease,
         box-shadow .35s ease,
         border-color .35s ease;
 }

 .benefit-premium-card::before {
     content: "";
     position: absolute;
     width: 140px;
     height: 140px;
     top: -90px;
     right: -90px;
     border-radius: 50%;
     background: rgba(183, 140, 255, .11);
     transition: transform .4s ease;
 }

 .benefit-premium-card:hover {
     transform: translateY(-9px);
     border-color: rgba(118, 87, 217, .25);
     box-shadow: 0 25px 55px rgba(55, 40, 98, .12);
 }

 .benefit-premium-card:hover::before {
     transform: scale(1.8);
 }

 .benefit-card-header {
     position: relative;
     z-index: 2;
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     margin-bottom: 27px;
 }

 .benefit-icon {
     width: 58px;
     height: 58px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 17px;
     color: #A61617;
     background: #f1edff;
     font-size: 21px;
     transition: all .3s ease;
 }

 .benefit-premium-card:hover .benefit-icon {
     color: #fff;
     background: linear-gradient(135deg, #A61617, #b78cff);
     box-shadow: 0 12px 25px rgba(118, 87, 217, .25);
 }

 .benefit-number {
     color: rgba(118, 87, 217, .17);
     font-family: "Playfair Display", serif;
     font-size: 38px;
     font-weight: 800;
     line-height: 1;
 }

 .benefit-premium-card h3 {
     position: relative;
     z-index: 2;
     margin-bottom: 12px;
     color: #211c32;
     font-size: 23px;
     font-weight: 800;
 }

 .benefit-premium-card p {
     position: relative;
     z-index: 2;
     min-height: 94px;
     margin-bottom: 24px;
     color: #706b7b;
     font-size: 14px;
     line-height: 1.7;
 }

 .benefit-bottom {
     position: relative;
     z-index: 2;
     padding-top: 17px;
     border-top: 1px solid rgba(118, 87, 217, .09);
 }

 .benefit-bottom span {
     display: flex;
     align-items: center;
     gap: 8px;
     color: #A61617;
     font-size: 11px;
     font-weight: 800;

     text-transform: uppercase;
 }

 .benefit-bottom i {
     font-size: 12px;
 }

 .featured-benefit {
     border-color: rgba(118, 87, 217, .25);
     background:
         linear-gradient(145deg,
             #fff 0%,
             #faf8ff 100%);
     box-shadow: 0 18px 45px rgba(70, 49, 126, .10);
 }

 .featured-badge {
     position: absolute;
     top: 0;
     right: 25px;
     padding: 7px 12px;
     border-radius: 0 0 10px 10px;
     color: #fff;
     background: linear-gradient(135deg, #A61617, #b78cff);
     font-size: 9px;
     font-weight: 800;

     text-transform: uppercase;
 }

 /* Experience Panel */
 .benefit-experience {
     position: relative;
     overflow: hidden;
     margin-top: 80px;
     padding: 65px;
     border-radius: 32px;
     background: #211b36;
     box-shadow: 0 30px 70px rgba(38, 27, 69, .18);
 }

 .experience-glow {
     position: absolute;
     width: 450px;
     height: 450px;
     top: -300px;
     left: -100px;
     border-radius: 50%;
     background: rgba(183, 140, 255, .23);
     filter: blur(30px);
 }

 .experience-visual {
     position: relative;
     min-height: 390px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .experience-orbit {
     position: absolute;
     border: 1px solid rgba(201, 173, 255, .20);
     border-radius: 50%;
     animation: experiencePulse 4s ease-in-out infinite;
 }

 .orbit-one {
     width: 370px;
     height: 370px;
 }

 .orbit-two {
     width: 275px;
     height: 275px;
     animation-delay: .6s;
 }

 .orbit-three {
     width: 175px;
     height: 175px;
     animation-delay: 1.1s;
 }

 @keyframes experiencePulse {

     0%,
     100% {
         transform: scale(.96);
         opacity: .35;
     }

     50% {
         transform: scale(1.04);
         opacity: .75;
     }
 }

 .experience-center {
     position: relative;
     z-index: 5;
     width: 450px;
     height: 450px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     background: linear-gradient(135deg, #A61617, #b78cff);
     object-fit: fill;
     box-shadow:
         0 20px 55px rgba(118, 87, 217, .40),
         0 0 0 15px rgba(183, 140, 255, .06);
 }

 .experience-center-inner {
     width: 375px;
     height: 375px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255, 255, 255, .30);
     border-radius: 50%;
     color: #fff;
     background: rgba(255, 255, 255, .12);
     font-size: 28px;
 }

 .experience-point {
     position: absolute;
     z-index: 10;
     width: 52px;
     height: 52px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255, 255, 255, .14);
     border-radius: 50%;
     color: #d9c6ff;
     background: rgba(255, 255, 255, .07);
     backdrop-filter: blur(10px);
     font-size: 14px;
 }

 .experience-point-one {
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
 }

 .experience-point-two {
     right: 15px;
     top: 50%;
     transform: translateY(-50%);
 }

 .experience-point-three {
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
 }

 .experience-point-four {
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
 }

 .experience-label {
     display: block;
     margin-bottom: 14px;
     color: #c9adff;
     font-size: 11px;
     font-weight: 800;

 }

 .experience-list {
     margin-top: 30px;
 }

 .experience-list-item {
     display: flex;
     gap: 14px;
     padding: 15px 0;
     border-bottom: 1px solid rgba(255, 255, 255, .09);
 }

 .experience-list-item:last-child {
     border-bottom: 0;
 }

 .experience-check {
     width: 37px;
     min-width: 37px;
     height: 37px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 11px;
     color: #c9adff;
     background: rgba(183, 140, 255, .12);
 }

 .experience-list-item strong {
     display: block;
     margin-bottom: 3px;
     color: #fff;
     font-size: 21px;
 }

 .experience-list-item p {
     margin: 0;
     color: #aaa2b9;
     font-size: 12px;
     line-height: 1.5;
 }

 .benefit-experience h2 {
     margin-bottom: 18px;
     color: #fff;
     font-size: clamp(32px, 4vw, 45px);
     font-weight: 800;
 }

 .benefit-experience h2 span {
     color: #c9adff;
 }

 .experience-lead {
     max-width: 610px;
     color: #bdb6c9;
     font-size: 15px;
     line-height: 1.8;
 }

 /* Next Step CTA */
 .benefits-next-step {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 30px;
     margin-top: 55px;
     padding: 28px 30px;
     border: 1px solid rgba(118, 87, 217, .13);
     border-radius: 20px;
     background: #fff;
     box-shadow: 0 12px 35px rgba(50, 35, 90, .06);
 }

 .next-step-content {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .next-step-icon {
     width: 48px;
     min-width: 48px;
     height: 48px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 14px;
     color: #A61617;
     background: #f1edff;
 }

 .next-step-content span {
     display: block;
     margin-bottom: 3px;
     color: #A61617;
     font-size: 10px;
     font-weight: 800;

     text-transform: uppercase;
 }

 .next-step-content h3 {
     margin: 0 0 3px;
     color: #211c32;
     font-size: 20px;
     font-weight: 800;
 }

 .next-step-content p {
     margin: 0;
     color: #777181;
     font-size: 12px;
 }

 .benefits-cta {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 14px 23px;
     border-radius: 50px;
     color: #fff;
     background: linear-gradient(135deg, #A61617, #a477ef);
     box-shadow: 0 10px 25px rgba(118, 87, 217, .25);
     font-size: 13px;
     font-weight: 800;
     white-space: nowrap;
     transition: all .3s ease;
 }

 .benefits-cta:hover {
     color: #fff;
     transform: translateY(-3px);
     box-shadow: 0 16px 30px rgba(118, 87, 217, .32);
 }

 /* Responsive */
 @media (max-width: 991px) {
     .core-benefits-section {
         padding: 85px 0;
     }

     .benefit-experience {
         padding: 45px;
     }

     .experience-visual {
         margin-bottom: 20px;
     }

     .benefits-next-step {
         align-items: flex-start;
         flex-direction: column;
     }

     .benefits-cta {
         width: 100%;
     }
 }

 @media (max-width: 575px) {
     .core-benefits-section {
         padding: 65px 0;
     }

     .benefits-main-title {
         font-size: 38px;
     }

     .benefits-intro {
         font-size: 15px;
     }

     .benefit-premium-card {
         padding: 25px;
     }

     .benefit-premium-card p {
         min-height: auto;
     }

     .benefit-experience {
         margin-top: 55px;
         padding: 30px 22px;
         border-radius: 24px;
     }

     .experience-visual {
         min-height: 300px;
     }

     .orbit-one {
         width: 285px;
         height: 285px;
     }

     .orbit-two {
         width: 210px;
         height: 210px;
     }

     .orbit-three {
         width: 135px;
         height: 135px;
     }

     .experience-center {
         width: auto;
         height: auto;
     }

     .experience-center-inner {
         width: auto;
         height: auto;
         font-size: 21px;
     }

     .experience-point-one {
         top: 8px;
     }

     .experience-point-three {
         bottom: 8px;
     }

     .experience-point-two {
         right: 0;
     }

     .experience-point-four {
         left: 0;
     }

     .benefits-next-step {
         padding: 23px 20px;
     }

     .next-step-content {
         align-items: flex-start;
     }

     .next-step-content h3 {
         font-size: 17px;
     }
 }




 .protocol-process-section {
     position: relative;
     overflow: hidden;
     padding: 120px 0 105px;
     background:
         radial-gradient(circle at 12% 15%,
             rgba(183, 140, 255, .13),
             transparent 27%),
         radial-gradient(circle at 88% 70%,
             rgba(118, 87, 217, .08),
             transparent 30%),
         #fbfaff;
 }

 .protocol-process-orb {
     position: absolute;
     border-radius: 50%;
     pointer-events: none;
     filter: blur(15px);
 }

 .protocol-orb-one {
     width: 340px;
     height: 340px;
     top: -200px;
     left: 20%;
     background: rgba(183, 140, 255, .09);
 }

 .protocol-orb-two {
     width: 300px;
     height: 300px;
     right: -160px;
     bottom: 15%;
     background: rgba(118, 87, 217, .07);
 }

 .process-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     margin-bottom: 18px;
     color: #A61617;
     font-size: 12px;
     font-weight: 800;

     text-transform: uppercase;
 }

 .process-eyebrow span {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #A61617;
     box-shadow: 0 0 0 5px rgba(118, 87, 217, .10);
 }

 .process-main-title {
     margin-bottom: 20px;
     color: #19152b;
     font-size: clamp(38px, 5vw, 58px);
     font-weight: 800;

     line-height: 1.12;
 }

 .process-main-title strong {

     color: #A61617;
 }

 .process-intro {
     max-width: 1060px;
     margin: auto;
     color: #6d6878;
     font-size: 17px;
     line-height: 1.8;
 }

 /* Timeline */
 .protocol-timeline {
     position: relative;
     margin-top: 90px;
 }

 .timeline-line {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 50%;
     width: 2px;
     transform: translateX(-50%);
     overflow: hidden;
     background: rgba(118, 87, 217, .13);
 }

 .timeline-progress {
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom,
             #A61617,
             #b78cff,
             #A61617);
     transform-origin: top;
     animation: timelineGlow 4s ease-in-out infinite;
 }

 @keyframes timelineGlow {

     0%,
     100% {
         opacity: .45;
     }

     50% {
         opacity: 1;
     }
 }

 .protocol-step {
     position: relative;
     display: grid;
     grid-template-columns: 1fr 90px 1fr;
     align-items: center;
     min-height: 360px;
 }

 .protocol-step-content {
     position: relative;
     z-index: 3;
     width: 90%;
     padding: 35px;
     border: 1px solid rgba(118, 87, 217, .10);
     border-radius: 25px;
     background: rgba(255, 255, 255, .92);
     box-shadow: 0 18px 45px rgba(54, 39, 94, .07);
     transition: all .35s ease;
 }

 .protocol-step-content:hover {
     transform: translateY(-6px);
     border-color: rgba(118, 87, 217, .22);
     box-shadow: 0 25px 55px rgba(54, 39, 94, .12);
 }

 .protocol-step-left .protocol-step-content {
     grid-column: 1;
     margin-right: auto;
 }

 .protocol-step-right .protocol-step-content {
     grid-column: 3;
     margin-left: auto;
 }

 .protocol-step-number {
     position: relative;
     z-index: 8;
     grid-column: 2;
     grid-row: 1;
     width: 76px;
     height: 76px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: auto;
     border: 7px solid #fbfaff;
     border-radius: 50%;
     color: #fff;
     background: linear-gradient(135deg,
             #A61617,
             #b78cff);
     box-shadow:
         0 12px 30px rgba(118, 87, 217, .25),
         0 0 0 1px rgba(118, 87, 217, .15);
 }

 .protocol-step-number span {
     font-size: 16px;
     font-weight: 800;
 }

 .protocol-step-visual {
     position: relative;
     grid-row: 1;
     display: flex;
     justify-content: center;
 }

 .protocol-step-left .protocol-step-visual {
     grid-column: 3;
 }

 .protocol-step-right .protocol-step-visual {
     grid-column: 1;
 }

 .step-visual-card {
     position: relative;
     width: 210px;
     padding: 28px 20px;
     border: 1px solid rgba(118, 87, 217, .11);
     border-radius: 22px;
     text-align: center;
     background: linear-gradient(145deg,
             #fff,
             #f6f2ff);
     box-shadow: 0 15px 35px rgba(54, 39, 94, .07);
 }

 .step-visual-card::before {
     content: "";
     position: absolute;
     width: 80px;
     height: 80px;
     top: -25px;
     right: -25px;
     border-radius: 50%;
     background: rgba(183, 140, 255, .13);
     filter: blur(4px);
 }

 .step-visual-icon {
     position: relative;
     width: 64px;
     height: 64px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 17px;
     border-radius: 18px;
     color: #A61617;
     background: #eee9ff;
     font-size: 22px;
 }

 .step-visual-card>span {
     display: block;
     margin-bottom: 4px;
     color: rgba(118, 87, 217, .55);
     font-size: 15px;
     font-weight: 800;

 }

 .step-visual-card strong {
     display: block;
     margin-bottom: 5px;
     color: #241e34;
     font-size: 18px;
     font-weight: 800;
 }

 .step-visual-card small {
     display: block;
     color: #777181;
     font-size: 16px;
 }

 .final-step-card {
     border-color: rgba(118, 87, 217, .24);
     box-shadow: 0 20px 45px rgba(118, 87, 217, .10);
 }

 .protocol-step-label {
     margin-bottom: 10px;
     color: #A61617;
     font-size: 10px;
     font-weight: 800;

 }

 .protocol-step-content h3 {
     margin-bottom: 14px;
     color: #201b30;
     font-size: 31px;
     font-weight: 800;
 }

 .protocol-step-content h3 span {
     color: #A61617;
 }

 .protocol-step-content>p {
     margin-bottom: 20px;
     color: #706b7b;
     font-size: 14px;
     line-height: 1.75;
 }

 .protocol-step-points {
     display: flex;
     flex-direction: column;
     gap: 9px;
 }

 .protocol-step-points div {
     display: flex;
     align-items: center;
     gap: 8px;
     color: #393344;
     font-size: 15px;
     font-weight: 600;
 }

 .protocol-step-points i {
     color: #A61617;
     font-size: 15px;
 }

 /* Summary */
 .process-summary {
     position: relative;
     overflow: hidden;
     margin-top: 75px;
     padding: 55px 45px;
     border-radius: 30px;
     text-align: center;
     color: #fff;
     background:
         radial-gradient(circle at 50% -50%,
             rgba(183, 140, 255, .40),
             transparent 55%),
         #211b36;
     box-shadow: 0 30px 70px rgba(37, 26, 68, .17);
 }

 .summary-glow {
     position: absolute;
     width: 300px;
     height: 300px;
     right: -120px;
     bottom: -180px;
     border-radius: 50%;
     background: rgba(183, 140, 255, .15);
     filter: blur(20px);
 }

 .summary-badge {
     display: inline-block;
     margin-bottom: 13px;
     color: #c9adff;
     font-size: 10px;
     font-weight: 800;

 }

 .summary-top h3 {
     margin-bottom: 14px;
     font-size: clamp(30px, 4vw, 44px);
     font-weight: 800;
 }

 .summary-top h3 span,
 .summary-top h3 strong {
     color: #c9adff;
 }

 .summary-top p {
     max-width: 650px;
     margin: auto;
     color: #b9b1c6;
     font-size: 14px;
     line-height: 1.75;
 }

 .summary-flow {
     position: relative;
     z-index: 2;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     margin-top: 38px;
 }

 .summary-flow-item {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .summary-flow-icon {
     width: 44px;
     height: 44px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255, 255, 255, .14);
     border-radius: 13px;
     color: #d4c0ff;
     background: rgba(255, 255, 255, .07);
 }

 .summary-flow-item span {
     color: #fff;
     font-size: 12px;
     font-weight: 800;
 }

 .summary-arrow {
     color: #766a86;
     font-size: 12px;
 }



 /* Responsive */
 @media (max-width: 991px) {

     .protocol-process-section {
         padding: 85px 0;
     }

     .protocol-timeline {
         margin-top: 65px;
     }

     .timeline-line {
         left: 38px;
     }

     .protocol-step {
         display: block;
         min-height: auto;
         padding-left: 85px;
         margin-bottom: 60px;
     }

     .protocol-step-number {
         position: absolute;
         top: 0;
         left: 0;
         width: 70px;
         height: 70px;
     }

     .protocol-step-content,
     .protocol-step-left .protocol-step-content,
     .protocol-step-right .protocol-step-content {
         width: 100%;
         margin: 0 0 25px;
     }

     .protocol-step-visual,
     .protocol-step-left .protocol-step-visual,
     .protocol-step-right .protocol-step-visual {
         display: flex;
         justify-content: flex-start;
     }

     .process-summary {
         margin-top: 45px;
     }

     .process-next-section {
         align-items: flex-start;
         flex-direction: column;
     }

     .process-next-button {
         width: 100%;
     }
 }

 @media (max-width: 575px) {

     .protocol-process-section {
         padding: 65px 0;
     }

     .process-main-title {
         font-size: 38px;
     }

     .process-intro {
         font-size: 15px;
     }

     .protocol-timeline {
         margin-top: 50px;
     }

     .timeline-line {
         left: 27px;
     }

     .protocol-step {
         padding-left: 60px;
         margin-bottom: 50px;
     }

     .protocol-step-number {
         width: 55px;
         height: 55px;
         border-width: 5px;
     }

     .protocol-step-number span {
         font-size: 12px;
     }

     .protocol-step-content {
         padding: 25px 21px;
         border-radius: 20px;
     }

     .protocol-step-content h3 {
         font-size: 26px;
     }

     .protocol-step-content>p {
         font-size: 13px;
     }

     .step-visual-card {
         width: 100%;
     }

     .process-summary {
         padding: 40px 22px;
         border-radius: 24px;
     }

     .summary-flow {
         flex-direction: column;
         gap: 10px;
     }

     .summary-arrow {
         transform: rotate(90deg);
     }

     .summary-flow-item {
         width: 150px;
         justify-content: flex-start;
     }

     .process-next-section {
         padding: 22px 20px;
     }

     .process-next-content {
         align-items: flex-start;
     }

     .process-next-content h3 {
         font-size: 17px;
     }
 }



 .process-step-hidden {
     opacity: 0;
     transform: translateY(45px);
     transition:
         opacity .8s ease,
         transform .8s ease;
 }

 .process-step-visible {
     opacity: 1;
     transform: translateY(0);
 }



 .frequency-faq-section {
     position: relative;
     overflow: hidden;
     padding: 115px 0 100px;
     background:
         radial-gradient(circle at 5% 20%,
             rgba(183, 140, 255, .11),
             transparent 27%),
         radial-gradient(circle at 95% 75%,
             rgba(118, 87, 217, .08),
             transparent 30%),
         #fbfaff;
 }

 .faq-bg-orb {
     position: absolute;
     border-radius: 50%;
     pointer-events: none;
     filter: blur(25px);
 }

 .faq-bg-orb-one {
     width: 330px;
     height: 330px;
     top: -160px;
     right: 15%;
     background: rgba(183, 140, 255, .09);
 }

 .faq-bg-orb-two {
     width: 300px;
     height: 300px;
     bottom: -150px;
     left: -120px;
     background: rgba(118, 87, 217, .07);
 }


 /* =========================
       HEADER
    ========================= */

 .faq-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     margin-bottom: 18px;
     color: #A61617;
     font-size: 11px;
     font-weight: 800;

     text-transform: uppercase;
 }

 .faq-eyebrow span {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #A61617;
     box-shadow:
         0 0 0 5px rgba(118, 87, 217, .10);
 }

 .faq-main-title {
     margin-bottom: 18px;
     color: #1e192d;
     font-size: clamp(38px, 5vw, 57px);
     font-weight: 800;

     line-height: 1.1;
 }

 .faq-main-title strong {

     color: #A61617;
 }

 .faq-intro {
     max-width: 9200px;
     margin: auto;
     color: #706a7b;
     font-size: 16px;
     line-height: 1.8;
 }


 /* =========================
       FAQ WRAPPER
    ========================= */

 .faq-wrapper {
     display: flex;
     flex-direction: column;
     gap: 13px;
 }

 .faq-item {
     overflow: hidden;
     border: 1px solid rgba(118, 87, 217, .10);
     border-radius: 18px;
     background: rgba(255, 255, 255, .88);
     box-shadow: 0 8px 25px rgba(48, 35, 81, .045);
     transition:
         border-color .3s ease,
         box-shadow .3s ease,
         transform .3s ease;
 }

 .faq-item:hover {
     border-color: rgba(118, 87, 217, .20);
     box-shadow: 0 15px 35px rgba(48, 35, 81, .08);
 }

 .faq-item.active {
     border-color: rgba(118, 87, 217, .22);
     box-shadow: 0 18px 40px rgba(48, 35, 81, .08);
 }


 /* =========================
       QUESTION
    ========================= */

 .faq-question {
     width: 100%;
     display: grid;
     grid-template-columns: 48px 1fr 42px;
     align-items: center;
     gap: 15px;
     padding: 23px 24px;
     border: 0;
     color: #241e34;
     background: transparent;
     text-align: left;
     cursor: pointer;
 }

 .faq-number {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 12px;
     color: #A61617;
     background: #f1edff;
     font-size: 1.2rem;
     font-weight: 800;

     transition: all .3s ease;
 }

 .faq-item.active .faq-number {
     color: #fff;
     background: linear-gradient(135deg,
             #A61617,
             #a477ef);
     box-shadow:
         0 8px 18px rgba(118, 87, 217, .22);
 }

 .faq-question-text {
     padding-right: 10px;
     font-size: 1.3rem;
     font-weight: 800;
     line-height: 1.5;
 }

 .faq-toggle {
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(118, 87, 217, .12);
     border-radius: 50%;
     color: #A61617;
     background: #faf9ff;
     transition:
         transform .35s ease,
         color .3s ease,
         background .3s ease;
 }

 .faq-toggle i {
     font-size: 11px;
     transition: transform .35s ease;
 }

 .faq-item.active .faq-toggle {
     color: #fff;
     background: #A61617;
     transform: rotate(45deg);
 }


 /* =========================
       ANSWER
    ========================= */

 .faq-answer {
     display: grid;
     grid-template-rows: 0fr;
     transition: grid-template-rows .4s ease;
 }

 .faq-item.active .faq-answer {
     grid-template-rows: 1fr;
 }

 .faq-answer-inner {
     min-height: 0;
     overflow: hidden;
     padding: 0 90px 0 87px;
     transition: padding .4s ease;
 }

 .faq-item.active .faq-answer-inner {
     padding-bottom: 25px;
 }

 .faq-answer-inner p {
     margin: 0;
     color: #716b7c;
     font-size: 1.3rem;
     line-height: 1.85;
 }


 /* Inline CTA */

 .faq-inline-cta {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-top: 18px;
     color: #A61617;
     font-size: 12px;
     font-weight: 800;
     transition: gap .25s ease;
 }

 .faq-inline-cta:hover {
     color: #6545c5;
     gap: 12px;
 }


 /* =========================
       BOTTOM CTA
    ========================= */

 .faq-bottom-cta {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-top: 55px;
     padding: 25px 28px;
     border: 1px solid rgba(118, 87, 217, .12);
     border-radius: 20px;
     background: #fff;
     box-shadow: 0 15px 40px rgba(48, 35, 81, .06);
 }

 .faq-bottom-icon {
     width: 52px;
     min-width: 52px;
     height: 52px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 15px;
     color: #A61617;
     background: #f0ebff;
     font-size: 20px;
 }

 .faq-bottom-content {
     flex: 1;
 }

 .faq-bottom-content>span {
     display: block;
     margin-bottom: 3px;
     color: #A61617;
     font-size: 10px;
     font-weight: 800;

     text-transform: uppercase;
 }

 .faq-bottom-content h3 {
     margin: 0 0 4px;
     color: #211c32;
     font-size: 20px;
     font-weight: 800;
 }

 .faq-bottom-content p {
     margin: 0;
     color: #777181;
     font-size: 12px;
 }

 .faq-contact-button {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     padding: 13px 21px;
     border-radius: 50px;
     color: #fff;
     background: linear-gradient(135deg,
             #A61617,
             #a477ef);
     box-shadow:
         0 10px 25px rgba(118, 87, 217, .22);
     font-size: 12px;
     font-weight: 800;
     white-space: nowrap;
     transition: all .3s ease;
 }

 .faq-contact-button:hover {
     color: #fff;
     transform: translateY(-3px);
     box-shadow:
         0 15px 30px rgba(118, 87, 217, .30);
 }

 ul {
     font-size: 1.2rem;
 }

 /* =========================
       RESPONSIVE
    ========================= */

 @media (max-width: 767px) {

     .frequency-faq-section {
         padding: 80px 0;
     }

     .faq-question {
         grid-template-columns: 40px 1fr 36px;
         gap: 11px;
         padding: 18px 16px;
     }

     .faq-number {
         width: 36px;
         height: 36px;
     }

     .faq-question-text {
         font-size: 1.3rem;
     }

     .faq-toggle {
         width: 32px;
         height: 32px;
     }

     .faq-answer-inner {
         padding: 0 16px 0 67px;
     }

     .faq-item.active .faq-answer-inner {
         padding-bottom: 20px;
     }

     .faq-answer-inner p {
         font-size: 1.3rem;
     }

     .faq-bottom-cta {
         align-items: flex-start;
         flex-direction: column;
         padding: 22px;
     }

     .faq-contact-button {
         width: 100%;
         justify-content: center;
     }

 }

 @media (max-width: 575px) {

     .frequency-faq-section {
         padding: 65px 0;
     }

     .faq-main-title {
         font-size: 36px;
     }

     .faq-intro {
         font-size: 14px;
     }

     .faq-question {
         grid-template-columns: 35px 1fr 32px;
         gap: 9px;
         padding: 16px 13px;
     }

     .faq-number {
         width: 33px;
         height: 33px;
         border-radius: 10px;
         font-size: 9px;
     }



     .faq-toggle {
         width: 30px;
         height: 30px;
     }

     .faq-answer-inner {
         padding-left: 57px;
         padding-right: 15px;
     }

     .faq-bottom-icon {
         width: 46px;
         min-width: 46px;
         height: 46px;
     }

     .faq-bottom-content h3 {
         font-size: 18px;
     }

 }




 /* ===============================
       FOOTER CTA
    =============================== */

 .frequency-footer {
     position: relative;
     overflow: hidden;
 }

 .footer-cta-section {
     position: relative;
     overflow: hidden;
     padding: 100px 0;
     background:
         radial-gradient(circle at 15% 50%,
             rgba(183, 140, 255, .12),
             transparent 28%),
         radial-gradient(circle at 85% 20%,
             rgba(118, 87, 217, .10),
             transparent 30%),
         #f9f7ff;
 }

 .footer-cta-glow {
     position: absolute;
     border-radius: 50%;
     pointer-events: none;
     filter: blur(30px);
 }

 .footer-glow-one {
     width: 300px;
     height: 300px;
     top: -180px;
     left: 10%;
     background: rgba(183, 140, 255, .12);
 }

 .footer-glow-two {
     width: 280px;
     height: 280px;
     right: 5%;
     bottom: -180px;
     background: rgba(118, 87, 217, .08);
 }

 .footer-cta-card {
     position: relative;
     display: grid;
     grid-template-columns: 1.15fr .85fr;
     align-items: center;
     min-height: 440px;
     overflow: hidden;
     padding: 65px 75px;
     border-radius: 34px;
     background:
         radial-gradient(circle at 80% 20%,
             rgba(183, 140, 255, .18),
             transparent 35%),
         #211b36;
     box-shadow:
         0 30px 80px rgba(39, 27, 70, .20);
 }

 .footer-cta-card::after {
     content: "";
     position: absolute;
     width: 500px;
     height: 500px;
     right: -300px;
     bottom: -300px;
     border-radius: 50%;
     border: 1px solid rgba(255, 255, 255, .07);
 }

 .footer-cta-content {
     position: relative;
     z-index: 5;
 }

 .footer-cta-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     margin-bottom: 17px;
     color: #c9adff;
     font-size: 11px;
     font-weight: 800;

     text-transform: uppercase;
 }

 .footer-cta-eyebrow span {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #c9adff;
     box-shadow:
         0 0 0 5px rgba(201, 173, 255, .08);
 }

 .footer-cta-content h2 {

     margin-bottom: 18px;
     color: #fff;
     font-size: clamp(37px, 5vw, 58px);
     font-weight: 800;

     line-height: 1.1;
 }

 .footer-cta-content h2 strong {
     
     color: #c9adff;
 }

 .footer-cta-content>p {

     margin-bottom: 27px;
     color: #bdb5c9;
     font-size: 15px;
     line-height: 1.75;
 }

 .footer-main-button {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 15px 25px;
     border-radius: 50px;
     color: #281f3d;
     background: #fff;
     box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
     font-size: 13px;
     font-weight: 800;
     transition: all .3s ease;
 }

 .footer-main-button:hover {
     color: #fff;
     background: #A61617;
     transform: translateY(-3px);
     box-shadow:
         0 18px 35px rgba(118, 87, 217, .30);
 }

 .footer-cta-note {
     margin-top: 15px;
     color: #8f879e;
     font-size: 10px;
 }

 .footer-cta-note i {
     color: #bda5ee;
 }


 /* ===============================
       CTA VISUAL
    =============================== */

 .footer-cta-visual {
     position: relative;
     min-height: 340px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .footer-orbit {
     position: absolute;
     border: 1px solid rgba(201, 173, 255, .17);
     border-radius: 50%;
     animation: footerOrbitPulse 5s ease-in-out infinite;
 }

 .footer-orbit-one {
     width: 350px;
     height: 350px;
 }

 .footer-orbit-two {
     width: 265px;
     height: 265px;
     animation-delay: .6s;
 }

 .footer-orbit-three {
     width: 180px;
     height: 180px;
     animation-delay: 1.1s;
 }

 @keyframes footerOrbitPulse {

     0%,
     100% {
         transform: scale(.96);
         opacity: .35;
     }

     50% {
         transform: scale(1.04);
         opacity: .75;
     }

 }

 .footer-frequency-core {
     position: relative;
     z-index: 5;
     width: 325px;
     height: 325px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     background:
         linear-gradient(135deg,
             #A61617,
             #b78cff);
     box-shadow:
         0 25px 60px rgba(118, 87, 217, .40),
         0 0 0 15px rgba(183, 140, 255, .05);
 }

 .footer-frequency-inner {
     width: 280px;
     height: 280px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255, 255, 255, .30);
     border-radius: 50%;
     color: #fff;
     background: rgba(255, 255, 255, .12);
     font-size: 30px;
     object-fit: cover;
 }

 .footer-floating {
     position: absolute;
     z-index: 10;
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255, 255, 255, .12);
     border-radius: 50%;
     color: #d7c4ff;
     background: rgba(255, 255, 255, .07);
     backdrop-filter: blur(10px);
     animation: footerFloat 4s ease-in-out infinite;
 }

 .footer-float-one {
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
 }

 .footer-float-two {
     right: 25px;
     top: 50%;
     transform: translateY(-50%);
     animation-delay: .8s;
 }

 .footer-float-three {
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     animation-delay: 1.5s;
 }

 @keyframes footerFloat {

     0%,
     100% {
         margin-top: 0;
     }

     50% {
         margin-top: -8px;
     }

 }


 /* ===============================
       MAIN FOOTER
    =============================== */

 .footer-main {
     padding: 75px 0 25px;
     color: #b2acbd;
     background: #171326;
 }

 .footer-logo {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 22px;
     color: #fff;
     font-size: 21px;
     font-weight: 700;
 }

 .footer-logo:hover {
     color: #fff;
 }

 .footer-logo strong {
     color: #c9adff;
 }

 .footer-logo-icon {
     width: 43px;
     height: 43px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 13px;
     color: #fff;
     background: linear-gradient(135deg,
             #A61617,
             #b78cff);
     box-shadow:
         0 10px 25px rgba(118, 87, 217, .25);
 }

 .footer-brand-description {
     max-width: 440px;
     margin-bottom: 25px;
     color: #8e879b;
     font-size: 13px;
     line-height: 1.8;
 }

 .footer-socials {
     display: flex;
     gap: 9px;
 }

 .footer-socials a {
     width: 38px;
     height: 38px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255, 255, 255, .08);
     border-radius: 11px;
     color: #aaa2b8;
     background: rgba(255, 255, 255, .03);
     transition: all .3s ease;
 }

 .footer-socials a:hover {
     color: #fff;
     background: #A61617;
     border-color: #A61617;
     transform: translateY(-3px);
 }


 /* PRICE SECTION */
 .frequency-price-section {
     padding: 70px 0 80px;
     background: #f8f6f1;
 }

 .price-offer-wrapper {
     max-width: 520px;
     margin: 0 auto;
     text-align: center;
 }

 .price-product-image {
     display: inline-block;
     max-width: 420px;
     padding: 6px;
     background: #fff;
     border: 1px solid #d8d4cb;
     border-radius: 3px;
     box-shadow: 0 20px 45px rgba(20, 25, 40, .20);
     transition: transform .3s ease, box-shadow .3s ease;
 }

 .price-product-image:hover {
     transform: translateY(-4px);
     box-shadow: 0 25px 55px rgba(20, 25, 40, .26);
 }

 .price-product-image img {
     display: block;
     width: 100%;
     height: auto;
 }

 .instant-access-link {
     display: block;
     margin: 16px 0 34px;
     color: #173c9b;
     font-family: Georgia, "Times New Roman", serif;
     font-size: 13px;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-decoration: none;
     transition: color .3s ease;
 }

 .instant-access-link:hover {
     color: #0d2c78;
 }

 .price-main-button {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     min-height: 54px;
     padding: 15px 24px;
     border-radius: 3px;
     background: linear-gradient(135deg, #2865df, #1d50c7);
     color: #fff;
     font-family: Georgia, "Times New Roman", serif;
     font-size: 17px;
     font-weight: 700;
     letter-spacing: .6px;
     text-decoration: none;
     box-shadow: 0 10px 25px rgba(35, 91, 210, .30);
     transition: all .3s ease;
 }

 .price-main-button:hover {
     color: #fff;
     transform: translateY(-2px);
     background: linear-gradient(135deg, #3473ed, #1749bd);
     box-shadow: 0 14px 30px rgba(35, 91, 210, .38);
 }

 .price-security {
     margin-top: 16px;
     color: #666;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: .5px;
     text-transform: uppercase;
 }

 .price-security i {
     margin-right: 5px;
     color: #555;
 }

 .price-security span {
     margin: 0 8px;
     color: #aaa;
 }

 @media (max-width: 576px) {
     .frequency-price-section {
         padding: 50px 15px 60px;
     }

     .price-product-image {
         max-width: 100%;
     }

     .instant-access-link {
         margin-bottom: 25px;
         font-size: 12px;
     }

     .price-main-button {
         min-height: 52px;
         padding: 14px 15px;
         font-size: 15px;
     }

     .protocol-mini-label{
        display: none;
     }
 }




 .frequency-section {
     background: #fff;
     padding: 50px 0;
 }

 .section-title {
     font-size: 32px;
     font-weight: 700;
     color: #222;
     margin-bottom: 12px;
 }

 .section-description {
     max-width: 700px;
     margin: 0 auto 25px;
     font-size: 16px;
     line-height: 1.7;
     color: #555;
 }

 .frequency-product-image {
     width: 800px;
     height: auto;
     display: inline-block;
 }

 @media (max-width: 767px) {
     .section-title {
         font-size: 26px;
     }

     .section-description {
         font-size: 15px;
     }

     .frequency-product-image {
         width: auto;
     }
 }




 /* Footer Columns */

 .footer-column strong {
     margin-bottom: 20px;
     color: #fff;
     font-size: 18px;
     font-weight: 800;
 }

 .footer-column ul {
     padding: 0;
     margin: 0;
     list-style: none;
 }

 .footer-column li {
     margin-bottom: 12px;
 }

 .footer-column a {
     color: #8e879b;
     font-size: 18px;
     transition: all .25s ease;
 }

 .footer-column a:hover {
     padding-left: 3px;
     color: #c9adff;
 }


 /* Divider */

 .footer-divider {
     height: 1px;
     margin: 55px 0 25px;
     background: rgba(255, 255, 255, .07);
 }


 /* Disclaimer */

 .footer-disclaimer {
     display: flex;
     align-items: flex-start;
     gap: 13px;
     padding: 18px 20px;
     border: 1px solid rgba(255, 255, 255, .06);
     border-radius: 15px;
     background: rgba(255, 255, 255, .025);
 }

 .footer-disclaimer-icon {
     width: 30px;
     min-width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #a991db;
     font-size: 13px;
 }

 .footer-disclaimer p {
     margin: 0;
     color: #777184;
     font-size: 10px;
     line-height: 1.7;
 }

 .footer-disclaimer strong {
     color: #a39aaa;
 }


 /* Bottom */

 .footer-bottom {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     padding-top: 25px;
 }

 .footer-bottom p {
     margin: 0;
     color: #676071;
     font-size: 10px;
 }

 .footer-bottom-links {
     display: flex;
     align-items: center;
     gap: 9px;
     color: #514b5b;
     font-size: 10px;
 }

 .footer-bottom-links a {
     color: #716a7c;
     transition: color .25s ease;
 }

 .footer-bottom-links a:hover {
     color: #c9adff;
 }


 /* ===============================
       RESPONSIVE
    =============================== */

 @media (max-width: 991px) {

     .footer-cta-section {
         padding: 80px 0;
     }

     .footer-cta-card {
         grid-template-columns: 1fr;
         padding: 55px;
     }

     .footer-cta-visual {
         min-height: 300px;
     }

     .footer-brand {
         margin-bottom: 15px;
     }

     .footer-main {
         padding-top: 60px;
     }

     .footer-bottom{
        text-align: center;
     }

 }

 @media (max-width: 767px) {

     .footer-cta-card {
         padding: 42px 30px;
         border-radius: 27px;
     }

     .footer-cta-content h2 {
         font-size: 38px;
     }

     .footer-cta-content>p {
         font-size: 14px;
     }

     .footer-cta-visual {
         min-height: 270px;
     }

     .footer-orbit-one {
         width: 280px;
         height: 280px;
     }

     .footer-orbit-two {
         width: 210px;
         height: 210px;
     }

     .footer-orbit-three {
         width: 145px;
         height: 145px;
     }

     .footer-frequency-core {
         width: auto;
         height: auto;
     }

     .footer-frequency-inner {
         width: auto;
         height: auto;
         font-size: 23px;
     }

     .footer-main {
         padding-top: 50px;
     }

     .footer-bottom {
        
         flex-direction: column;
     }

 }

 @media (max-width: 575px) {

     .footer-cta-section {
         padding: 60px 0;
     }

     .footer-cta-card {
         padding: 35px 22px;
     }

     .footer-cta-content h2 {
         font-size: 34px;
     }

     .footer-main-button {
         width: 100%;
         justify-content: center;
     }

     .footer-cta-note {
         text-align: center;
     }

     .footer-cta-visual {
         min-height: 235px;
     }

     .footer-float-two {
         right: 0;
     }

     .footer-brand-description {
         font-size: 12px;
     }

     .footer-bottom-links {
         flex-wrap: wrap;
     }

     .footer-disclaimer {
         padding: 15px;
     }

 }



 .footer-element-hidden {
     opacity: 0;
     transform: translateY(25px);
     transition:
         opacity .7s ease,
         transform .7s ease;
 }

 .footer-element-visible {
     opacity: 1;
     transform: translateY(0);
 }


 .back-to-top {
     position: fixed;
     z-index: 9999;
     right: 25px;
     bottom: 25px;
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 0;
     border-radius: 50%;
     color: #fff;
     background: linear-gradient(135deg, #A61617, #b78cff);
     box-shadow: 0 10px 30px rgba(118, 87, 217, .30);
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transform: translateY(20px);
     transition:
         opacity .3s ease,
         visibility .3s ease,
         transform .3s ease,
         box-shadow .3s ease;
 }

 .back-to-top i {
     font-size: 15px;
 }

 .back-to-top:hover {
     color: #fff;
     transform: translateY(-4px);
     box-shadow: 0 15px 35px rgba(118, 87, 217, .40);
 }

 .back-to-top.show {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 @media (max-width: 575px) {
     .back-to-top {
         right: 15px;
         bottom: 15px;
         width: 45px;
         height: 45px;
     }
 }



 .reviews-section {
     background: linear-gradient(180deg, #fff 0%, #f8f5ff 100%);
 }

 .reviews-section .badge {
     background: #eee8ff;
     color: #6f42c1;
     font-size: 13px;
     font-weight: 600;
 }

 .review-card {
     background: #ffffff;
     border: 1px solid rgba(111, 66, 193, 0.10);
     box-shadow: 0 12px 35px rgba(40, 20, 80, 0.08);
     transition: all 0.3s ease;
 }

 .review-card:hover {
     transform: translateY(-7px);
     box-shadow: 0 18px 45px rgba(40, 20, 80, 0.13);
 }

 .stars {
     color: #f5b400;
     font-size: 15px;
     letter-spacing: 2px;
 }

 .review-text {
     color: #55505f;
     font-size: 15px;
     line-height: 1.8;
 }

 .review-author {
     display: flex;
     align-items: center;
     gap: 12px;
     padding-top: 15px;
     border-top: 1px solid #eeeeee;
 }

 .review-initial {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, #7b4dcc, #b56cff);
     color: #ffffff;
     font-weight: 700;
     font-size: 17px;
 }

 .review-author h6 {
     color: #25202d;
     font-size: 14px;
 }

 .review-author small {
     font-size: 12px;
 }

 @media (max-width: 767px) {
     .reviews-section {
         padding-top: 50px !important;
         padding-bottom: 50px !important;
     }

     .reviews-section h2 {
         font-size: 30px;
     }
 }