@import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Condensed&family=Inter:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
    background-color: #fff5f5;
    color: #333;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    padding: 0.5rem 1rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: #c31432;
}

.navbar-logo span {
    font-size: 2.2rem;
    font-weight: bold;
    color: #F3F9FF;
    margin-left: 2rem;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 5rem;
}

.navbar-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.navbar-menu a {
    color: #f0f8ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: #6f0000;
    font-size: 1.1rem;
    background: #fff5f5;
    padding: 0.8rem;
    border-radius: none;
}

.signup-button {
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #ffffff;
    color: #660000;
    border: 2px solid #660000;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.signup-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    font-size: 1rem;
    cursor: pointer;
    color: #f0f8ff;
    position: relative;
    z-index: 1001;
}

.hero {
    position: relative;
    height: 96vh;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #c31432, #a10043, #780049, #4d0845, #240b36);
    margin-bottom: 2rem;
}

.ripple-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ripple-container button {
    position: absolute;
    animation: ripple 5s infinite;
    border-radius: 100%;
    border: none;
    background-color: #8a1f19;
    opacity: 0;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes ripple {
    0% {
        width: 10px;
        height: 10px;
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.2);
    }
    50% {
        width: 500px;
        height: 500px;
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

.ripple-container button:nth-child(1) {
    animation-delay: 1000ms;
}

.ripple-container button:nth-child(2) {
    animation-delay: 1500ms;
}

.ripple-container button:nth-child(3) {
    animation-delay: 2000ms;
}

.ripple-container button:nth-child(4) {
    animation-delay: 2500ms;
}

.ripple-container button:nth-child(5) {
    animation-delay: 3000ms;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Arial', sans-serif;
    gap: 1rem;
    max-width: 80%;
    height: 100%;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 0;
    color: #F3F9FF;
}

.slide-content p {
    font-size: 1.5rem;
    margin: 0;
    color: #F3F9FF;
}

.slide-content .cta-button {
    margin-top: 1rem;
}

.slide-with-image .slide-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.slide-with-image img {
    max-width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.slide-with-image .slide-text {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.slide-with-image .slide-text h1 {
    font-size: 3rem;
    margin-bottom: 0;
    color: #d7ecff;
}

.slide-with-image .slide-text p {
    font-size: 1.5rem;
    margin: 0;
    color: #d7ecff;
}

.cta-button {
    padding: 0.7rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #ffffff;
    color: #660000;
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.content {
    max-width: 75rem;
    margin: 1rem auto;
    padding: 0.8rem;
    text-align: center;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: #004e77;
}

.content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.content p {
    font-size: 1.1rem;
}

.tab-container {
    margin-top: 1rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    color: #800000;
    font-weight: 600;
    background-color: #def4f1;
    border: 1px solid #800000;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.tab-button:hover {
    background-color: #ff4d4d;
    color: white;
}

.tab-button.active {
    font-weight: bold;
    background-color: #800000;
    color: white;
}

.tab-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
}

.tab-content img {
    width: 20rem;
    height: 18rem;
    object-fit: fit;
    border-radius: 1rem;
    order: 1;
    margin-top: 4rem;
}

.tab-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    order: 2;
    font-family: 'Poppins', sans-serif;
}

.tab-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.tab-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.tab-text ol.star {
    list-style-type: none;
    padding: 0;
}

.tab-text ol.star li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.tab-text ol.star li:before {
    content: '\2605';
    position: absolute;
    left: 0;
    color: transparent;
    background: linear-gradient(to right, red, blue);
    background-clip: text;
    -webkit-background-clip: text;
}

.app-features-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.carousel-text {
    text-align: left;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.carousel-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #004e77;
}

.carousel-text ol.star {
    list-style-type: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.carousel-text ol.star li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.carousel-text ol.star li:before {
    content: '\2605';
    position: absolute;
    left: 0;
    color: transparent;
    background: linear-gradient(to right, red, blue);
    background-clip: text;
    -webkit-background-clip: text;
}

.screenshot-carousel {
    margin-top: 4.525rem;
    max-width: 249px;
    height: 490px;
    position: relative;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 255px;
    height: 500px;
    top: -5px;
    left: -3px;
    background: url('images/screenshot-frame.png') no-repeat center center;
    background-size: contain;
    z-index: 2;
}

.carousel-item {
    position: relative;
    z-index: 1;
}

.carousel-item img {
    width: 249px;
    height: 490px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.owl-dots {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.owl-dot {
    background: #ccc;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.owl-dot.active {
    background: #333;
}

.download-section {
    max-width: 75rem;
    margin: 1rem auto;
    padding: 1rem;
    text-align: center;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #004e77;
    font-family: 'Inter', sans-serif;
}

.section-heading p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: auto;
    font-family: 'Inter', sans-serif;
}

.download-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.download-card {
    border-radius: 1.1rem;
    padding: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    font-family: 'Inter', sans-serif;
    width: 80%;
    max-width: 60rem;
    height: 17rem;
}

.download-card.google-card {
    background: repeating-linear-gradient(
        135deg,
        #34a853,
        #34a853 25%,
        #4285f4 25%,
        #4285f4 50%,
        #fbbc05 50%,
        #fbbc05 75%,
        #ea4335 75%,
        #ea4335 100%
    );
    background-size: 300% 300%;
    animation: waveSlide 10s linear infinite;
    color: white;
}

@keyframes waveSlide {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.download-card::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    z-index: 0;
    background: inherit;
    filter: blur(50px);
    opacity: 0.3;
}

.download-card .content {
    position: relative;
    z-index: 2;
}

.store-title {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.qr-code img {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1rem;
    border-radius: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    object-fit: contain;
}

.google-play-button img {
    height: 3rem;
    transition: transform 0.2s ease;
    margin-bottom: 1rem;
}

.google-play-button:hover img {
    transform: scale(1.05);
}

.apple-marquee {
    width: 80%;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    position: relative;
}

.apple-marquee-content {
    display: inline-flex;
    white-space: nowrap;
    animation: apple-marquee 10s linear infinite;
    font-size: 1.2rem;
    font-weight: 600;
    color: transparent;
    background: linear-gradient(to right, red, blue);
    background-clip: text;
    -webkit-background-clip: text;
}

.apple-marquee-content span {
    display: inline-block;
    padding-right: 2rem;
}

.apple-marquee-content i.fa-brands.fa-apple {
    font-size: 1.2rem;
    margin: 0 0.5rem;
    color: #000000;
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes apple-marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.7);
    }
    100% {
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.5);
    }
}

.how-it-works {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 1rem;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #004e77;
}

.grid-container {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    --grad: red, blue;
    position: relative;
    width: 23rem;
    height: 10rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(-225deg, #e3ffe7 5%, #d9e7ff 95%);
    padding-top: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        inset -2px 2px hsl(0 0 100% / 1),
        -20px 20px 40px hsl(0 0 0 / .25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 0.14rem;
    background: linear-gradient(to right, var(--grad));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.card:hover,
.card.clicked {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(0.8, 0.8, 0.8, 0.35);
}

.card .card-icon {
    position: absolute;
    top: 1.3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    background: linear-gradient(to right, var(--grad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card h3 {
    position: absolute;
    inset: auto auto 30px 30px;
    margin: 0 0 1rem 0;
    transition: inset 0.3s ease-out;
    font-family: 'Roboto light 300', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #222;
}

.card p {
    position: absolute;
    inset: auto auto 35px 30px;
    max-width: 80%;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
}

.card:hover h3,
.card.clicked h3 {
    inset: auto auto 90px 30px;
    transition: inset 0.3s ease-out;
}

.card:hover p,
.card.clicked p {
    opacity: 1;
    transition: opacity 0.5s 0.1s ease-in;
}

.card .bottom-bar {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 0.15rem;
    background: linear-gradient(to right, var(--grad));
    border-radius: 5px;
}

.marquee {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.marquee-content {
    display: inline-flex;
    white-space: nowrap;
    animation: customer-marquee 15s linear infinite;
}

.marquee-content img {
    width: 150px;
    height: auto;
    margin: 0 20px;
    flex-shrink: 0;
}

@keyframes customer-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.pricing {
    max-width: 75rem;
    margin: 1rem auto;
    padding: 1.5rem;
    text-align: center;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #004e77;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    --grad: red, blue;
    position: relative;
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 
        inset -2px 2px hsl(0 0 100% / 1),
        -20px 20px 40px hsl(0 0 0% / 0.25);
    padding: 1rem;
    width: 21rem;
    height: 22rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 0.14rem;
    background: linear-gradient(to right, var(--grad));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.pricing-card:hover,
.pricing-card.clicked {
    transform: scale(1.05);
    box-shadow: 
        inset -2px 2px hsl(0 0 100% / 1),
        -25px 25px 50px hsl(0 0 0% / 0.3);
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #660000;
    margin-bottom: 0.5rem;
}

.pricing-card .price sub {
    font-size: 0.8rem;
    font-weight: normal;
    color: #333;
}

.pricing-card ol {
    list-style: none;
    text-align: left;
    margin-bottom: 0.8rem;
    padding-left: 1.1rem;
    flex-grow: 1;
}

.pricing-card ol li {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card ol li:before {
    content: '\2605';
    position: absolute;
    left: 0;
    color: transparent;
    background: linear-gradient(to right, red, blue);
    background-clip: text;
    -webkit-background-clip: text;
}

.pricing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 15rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-decoration: none;
    text-align: center;
    border-radius: 4rem;
    border: 3px solid #6f0000;
    color: #6f0000;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    background: transparent;
    text-transform: uppercase;
    transition: all .35s;
    margin: 0 auto;
    cursor: pointer;
}

.pricing-button i {
    margin-left: 1.5rem;
    font-size: 1rem;
    transition: transform .3s ease-in-out;
}

.pricing-button:before,
.pricing-button:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: #6f0000;
    z-index: -1;
    transition: all .35s;
}

.pricing-button:before {
    opacity: .5;
}

.pricing-button:after {
    transition-delay: .2s;
}

.pricing-button:hover {
    color: #fff;
}

.pricing-button:hover:before,
.pricing-button:hover:after {
    top: 0;
}

.pricing-button:hover i {
    animation: ring 1s infinite;
}

@keyframes ring {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(10deg);
    }
    50% {
        transform: scale(1) rotate(-10deg);
    }
    75% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.footer {
    background-color: #564f52;
    color: #f0f8ff;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 1200px;
}

.footer-column {
    flex: 1;
    max-width: 300px;
    min-width: 200px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: left;
}

.footer-column ol {
    list-style-position: inside;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
    font-size: 0.9rem;
}

.footer-column ol li {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-column.about-column ol {
    list-style-type: square;
}

.footer-column.about-column ol li a {
    color: #f0f8ff;
    text-decoration: none;
}

.footer-column.about-column ol li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-column.contact-column ol {
    list-style: none;
}

.footer-column.contact-column ol li {
    position: relative;
    padding-left: 2rem;
}

.footer-column.contact-column ol li:nth-child(1)::before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f0f8ff;
}

.footer-column.contact-column ol li:nth-child(2)::before {
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f0f8ff;
}

.footer-column.contact-column ol li:nth-child(3)::before,
.footer-column.contact-column ol li:nth-child(4)::before {
    content: '\f4fd';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f0f8ff;
}

.footer-column.address-column ol {
    list-style: none;
}

.footer-column.address-column ol li {
    position: relative;
    padding-left: 2rem;
}

.footer-column.address-column ol li:nth-child(1)::before {
    content: '\f5a0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f0f8ff;
}

.footer-column.address-column ol li:nth-child(2)::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f0f8ff;
}

.footer-social {
    margin: 1.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.footer-social h3 {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-social h3 i {
    color: #f0f8ff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    width: 3.8rem;
    height: 3.8rem;
    background-color: #fff;
    text-align: center;
    line-height: 3.8rem;
    font-size: 1.8rem;
    margin: 0 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
    transition: transform 0.5s, opacity 0.5s, scale 0.5s;
}

.social-links a i {
    position: relative;
    color: #262626;
    transition: color 0.5s, transform 0.5s;
    z-index: 3;
}

.social-links a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: top 0.5s;
    z-index: 2;
}

.social-links a:nth-child(1):before {
    background: #4267B2;
}

.social-links a:nth-child(2):before {
    background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-links a:nth-child(3):before {
    background: #FF0000;
}

.social-links a:nth-child(4):before {
    background: #0077B5;
}

.social-links a:hover:before {
    top: 0;
}

.social-links a:hover {
    transform: scale(1.2);
}

.social-links a:hover i {
    color: #fff;
    transform: rotateY(360deg);
}

.footer-recognitions {
    margin: 1.5rem 0;
    width: 100%;
    max-width: 1200px;
}

.footer-recognitions h3 {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.recognition-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.recognition-logos img {
    width: 120px;
    height: auto;
    filter: grayscale(50%);
    transition: filter 0.3s, transform 0.3s;
}

.recognition-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.footer-copy {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    line-height: 40px;
    z-index: 1000;
    transition: background-color 0.3s, transform 0.3s, opacity 0.3s;
    opacity: 0;
    pointer-events: none;
}

.go-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.go-to-top:hover {
    background-color: #0088cc;
    transform: scale(1.1);
}

.go-to-top i {
    color: white;
}

.go-to-top::after {
    content: 'Go to Top';
    visibility: hidden;
    opacity: 0;
    background-color: #333;
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 4px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    transition: opacity 0.3s, visibility 0.3s;
}

.go-to-top:hover::after {
    visibility: visible;
    opacity: 1;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .navbar {
        flex-direction: row;
        align-items: center;
        padding: 0.8rem 1.2rem;
        justify-content: space-between;
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
    }

    .navbar-logo span {
        font-size: 1.8rem;
        margin-left: 0.8rem;
    }

    .hamburger {
        display: block;
        font-size: 1.4rem;
        margin-right: 3rem;
        color: #fff;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 100vw;
        background-color: #6f0000;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        display: none;
        z-index: 1000;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
        align-items: center;
    }

    .navbar-menu a {
        font-size: 1rem;
        padding: 0.4rem 0;
    }

    .signup-button {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        align-self: center;
        margin-top: 0.8rem;
    }

    .hero {
        margin-top: 3.5rem;
        height: 55vh;
        min-height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .slide-with-image .slide-content {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
    }

    .slide-with-image img {
        max-width: 35%;
        height: auto;
    }

    .slide-with-image .slide-text h1 {
        font-size: 2.2rem;
    }

    .slide-with-image .slide-text p {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .tab-buttons {
        flex-direction: row;
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-button {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .tab-button.active {
        font-weight: bold;
        background-color: #660000;
        color: white;
    }

    .tab-content {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }

    .tab-content img {
        width: 100%;
        max-width: 250px;
        height: auto;
        order: 1;
    }

    .tab-text {
        order: 2;
        max-width: 50%;
    }

    .tab-text h3 {
        font-size: 1.2rem;
    }

    .tab-text p {
        font-size: 0.85rem;
    }

    .tab-text ol.star li {
        font-size: 0.85rem;
    }

    .app-features-container {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        justify-content: center;
    }

    .carousel-text {
        text-align: left;
        max-width: 45%;
    }

    .carousel-text h3 {
        font-size: 1.2rem;
    }

    .carousel-text ol.star li {
        font-size: 0.85rem;
    }

    .screenshot-carousel {
        max-width: 220px;
        height: 430px;
    }

    .screenshot-carousel::before {
        width: 225px;
        height: 440px;
        top: -5px;
        left: -2.5px;
        background-size: contain;
    }

    .carousel-item img {
        width: 220px;
        height: 430px;
        border-radius: 8px;
    }

    .owl-dots {
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 8px;
    }

    .how-it-works {
        max-width: 100%;
        margin: 1rem auto;
        padding: 1rem;
    }

    .how-it-works h2 {
        font-size: 1.8rem;
    }

    .grid-container {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

.card {
    --grad: red, blue;
    position: relative;
    width: 14.2rem;
    height: 12rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(-225deg, #e3ffe7 5%, #d9e7ff 95%);
    padding-top: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        inset -2px 2px hsl(0 0 100% / 1),
        -20px 20px 40px hsl(0 0 0 / .25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 0.14rem;
    background: linear-gradient(to right, var(--grad));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

    .card .card-icon {
        top: 1.5rem;
        font-size: 2.5rem;
    }

    .card h3 {
        font-size: 0.85rem;
        inset: auto auto 25px 25px;
    }

    .card p {
        font-size: 0.75rem;
        max-width: 80%;
        inset: auto auto 50px 25px;
    }

    .card:hover h3,
    .card.clicked h3,
    .card.in-view h3 {
        inset: auto auto 100px 25px;
    }

    .card:hover p,
    .card.clicked p,
    .card.in-view p {
        opacity: 1;
    }

    .pricing {
        max-width: 100%;
        margin: 1rem auto;
        padding: 0.5rem;
    }

    .pricing h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .pricing-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.8rem;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .pricing-card {
        width: 200px;
        min-height: 320px;
        padding: 0.8rem;
        flex-shrink: 0;
    }

    .pricing-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .pricing-card .price {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .pricing-card .price sub {
        font-size: 0.5rem;
    }

    .pricing-card ol li {
        font-size: 0.7rem;
        padding-left: 0.8rem;
    }

    .pricing-button {
        max-width: 8rem;
        height: 1.8rem;
        font-size: 0.7rem;
        border: 2px solid #6f0000;
    }

    .pricing-button i {
        margin-left: 0.8rem;
        font-size: 0.7rem;
    }

    .marquee {
        width: 90%;
        max-width: 900px;
    }

    .marquee-content img {
        width: 90px;
        height: auto;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-links a {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1.5rem;
        transform: scale(1);
        opacity: 1;
    }

    .social-links a.visible {
        opacity: 1;
        transform: scale(1);
    }

    .social-links a.visible:nth-child(1) {
        background: #4267B2;
        border-color: #fff;
    }

    .social-links a.visible:nth-child(2) {
        background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        border-color: #fff;
    }

    .social-links a.visible:nth-child(3) {
        background: #FF0000;
        border-color: #fff;
    }

    .social-links a.visible:nth-child(4) {
        background: #0077B5;
        border-color: #fff;
    }

    .social-links a.visible i {
        color: #fff;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    body {
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .navbar-logo span {
        font-size: 1.9rem;
        margin-left: 1rem;
    }

    .navbar-menu a {
        font-size: 1.1rem;
    }

    .signup-button {
        padding: 0.7rem 1.3rem;
        font-size: 1.1rem;
    }

    .hero {
        margin-top: 4rem;
        height: 58vh;
        min-height: 500px;
    }

    .slide-content h1 {
        font-size: 2.8rem;
    }

    .slide-content p {
        font-size: 1.4rem;
    }

    .slide-with-image .slide-content {
        gap: 2rem;
    }

    .slide-with-image img {
        max-width: 38%;
        height: auto;
    }

    .slide-with-image .slide-text h1 {
        font-size: 2.8rem;
    }

    .slide-with-image .slide-text p {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1.1rem;
    }

    .tab-buttons {
        gap: 0.6rem;
    }

    .tab-button {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }

    .tab-content {
        gap: 1.5rem;
    }

    .tab-content img {
        max-width: 300px;
        height: auto;
    }

    .tab-text h3 {
        font-size: 1.5rem;
    }

    .tab-text p {
        font-size: 1rem;
    }

    .tab-text ol.star li {
        font-size: 1rem;
    }

    .app-features-container {
        gap: 2rem;
    }

    .carousel-text {
        max-width: 50%;
    }

    .carousel-text h3 {
        font-size: 1.5rem;
    }

    .carousel-text ol.star li {
        font-size: 1rem;
    }

    .screenshot-carousel {
        max-width: 280px;
        height: 550px;
    }

    .screenshot-carousel::before {
        width: 285px;
        height: 560px;
        top: -5px;
        left: -2.5px;
        background-size: contain;
    }

    .carousel-item img {
        width: 280px;
        height: 550px;
        border-radius: 10px;
    }

    .owl-dots {
        right: -50px;
        gap: 10px;
    }

    .how-it-works {
        max-width: 1200px;
        margin: 1rem auto;
        padding: 1rem;
    }

    .how-it-works h2 {
        font-size: 2rem;
    }

    .grid-container {
        gap: 2rem;
    }

    .card {
        width: 14rem;
        height: 14rem;
        border-radius: 1.2rem;
        padding-top: 3rem;
        flex-direction: column;
    }

    .card .card-icon {
        top: 1rem;
        font-size: 2rem;
    }

    .card h3 {
        font-size: 0.9rem;
        inset: auto auto 30px 30px;
    }

    .card p {
        font-size: 0.8rem;
        max-width: 80%;
        inset: auto auto 50px 30px;
    }

    .card:hover h3,
    .card.clicked h3,
    .card.in-view h3 {
        inset: auto auto 30px 30px;
    }

    .card:hover p,
    .card.clicked p,
    .card.in-view p {
        opacity: 1;
    }

    .pricing {
        max-width: 1100px;
        margin: 1rem auto;
        padding: 1rem;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    .pricing-cards {
        gap: 1.5rem;
    }

    .pricing-card {
        width: 18rem;
        min-height: 22rem;
        padding: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .pricing-card .price {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .pricing-card .price sub {
        font-size: 0.7rem;
    }

    .pricing-card ol li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }

    .pricing-button {
        max-width: 12rem;
        height: 2.5rem;
        font-size: 0.9rem;
        border: 2px solid #6f0000;
    }

    .pricing-button i {
        margin-left: 1.2rem;
        font-size: 0.9rem;
    }

    .marquee {
        max-width: 1100px;
    }

    .marquee-content img {
        width: 120px;
        height: auto;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        width: 3.5rem;
        height: 3.5rem;
        line-height: 3.5rem;
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) {
    .download-card:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .navbar {
        flex-direction: row;
        align-items: center;
        padding: 0.5rem 1rem;
        justify-content: space-between;
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
    }

    .navbar-logo span {
        font-size: 1.5rem;
        margin-left: 1rem;
    }

    .hamburger {
        display: block;
        font-size: 1rem;
        margin-right: 2.5rem;       
    }
    
    .hamburger fa-bars {
        colour: #fff;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 100vw;
        background-color: #6f0000;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        display: none;
        z-index: 1000;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu a:hover,
    .navbar-menu a.active {
    padding: 0.3rem;
    }

    .navbar-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: center;
    }

    .navbar-menu a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .signup-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        align-self: center;
        margin-top: 1rem;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .slide {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        height: 100%;
    }

    .slide-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 90%;
        gap: 0.5rem;
        height: 100%;
        margin-right: 1.5rem;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.8rem;
    }

    .slide-with-image .slide-content {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        justify-content: center;
        height: 65%;
        margin-right: 1.5rem;
    }

    .slide-with-image img {
        max-width: 80%;
        width: 80%;
        margin-bottom: 0.5rem;
    }

    .slide-with-image .slide-text {
        text-align: center;
        gap: 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .slide-with-image .slide-text h1 {
        font-size: 1.5rem;
    }

    .slide-with-image .slide-text p {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .slider-controls {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
    }

    .slider-controls button {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content h3 {
        font-size: 1.3rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .tab-button.active {
        font-weight: bold;
        background-color: #660000;
        color: white;
    }

    .tab-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .tab-content img {
        width: 100%;
        max-width: 250px;
        height: auto;
        order: 1;
    }

    .tab-text {
        order: 2;
    }

    .tab-text h3 {
        font-size: 1.3rem;
    }

    .tab-text p {
        font-size: 0.9rem;
    }

    .tab-text ol.star li {
        font-size: 0.9rem;
    }

    .app-features-container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .carousel-text {
        text-align: center;
        max-width: 100%;
    }

    .carousel-text h3 {
        font-size: 1.3rem;
    }

    .carousel-text ol.star li {
        font-size: 0.9rem;
    }

    .screenshot-carousel {
        max-width: 200px;
        height: 392px;
    }

    .screenshot-carousel::before {
        width: 204px;
        height: 400px;
        top: -4px;
        left: -2px;
        background-size: contain;
    }

    .carousel-item img {
        width: 200px;
        height: 392px;
        border-radius: 8px;
    }

    .owl-carousel .owl-stage-outer {
        overflow: hidden;
    }

    .owl-carousel .owl-item {
        display: flex;
        justify-content: center;
    }

    .owl-dots {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
    }

.how-it-works h2 {
    font-size: 1.5rem;
}
    .download-section {
        margin: 1rem auto;
        padding: 1rem;
    }

    .download-card {
        opacity: 0;
        transform: translateY(40px);
        width: 70%;
        max-width: 504px;
        height: 16rem;
    }

    .download-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.6s ease;
    }

    .download-card.active {
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        transform: scale(1.05);
        z-index: 10;
    }

    .download-card {
        padding: 20px;
        border-radius: 16px;
    }

.section-heading h2 {
    font-size: 1.5rem;
    margin-bottom: 0.52rem;
    color: #004e77;
    font-family: 'Inter', sans-serif;
}

    .store-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .qr-code img {
        width: 110px;
        height: 110px;
        margin-bottom: 20px;
    }

    .google-play-button img {
        height: 42px;
    }

    .apple-marquee {
        width: 70%;
        max-width: 504px;
        margin: 1rem auto;
        overflow: hidden;
        position: relative;
    }

    .apple-marquee-content {
        display: inline-flex;
        white-space: nowrap;
        animation: apple-marquee 10s linear infinite;
        font-size: 1rem;
        font-weight: 600;
        color: transparent;
        background: linear-gradient(to right, red, blue);
        background-clip: text;
        -webkit-background-clip: text;
    }

    .apple-marquee-content span {
        display: inline-block;
        padding-right: 2rem;
    }

    .apple-marquee-content i.fa-brands.fa-apple {
        font-size: 1rem;
        margin: 0 0.4rem;
        color: #000000;
        animation: glow 1.5s ease-in-out infinite;
    }

    .marquee {
        height: 3rem;
    }

    .marquee-content {
        height: 100px;
    }

    .marquee-content img {
        width: 100px;
        height: 60px;
        object-fit: contain;
    }

.card {
    --grad: red, blue;
    position: relative;
    width: 17rem;
    height: 9.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(-225deg, #e3ffe7 5%, #d9e7ff 95%);
    padding-top: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        inset -2px 2px hsl(0 0 100% / 1),
        -20px 20px 40px hsl(0 0 0 / .25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 0.14rem;
    background: linear-gradient(to right, var(--grad));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.card .card-icon {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.2rem;
    background: linear-gradient(to right, var(--grad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card h3 {
    position: absolute;
    inset: auto auto 30px 30px;
    margin: 0 0 1rem 0;
    transition: inset 0.3s ease-out;
    font-family: 'Roboto light 300', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #222;
}

.card p {
    position: absolute;
    inset: auto auto 40px 30px;
    max-width: 80%;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    color: #333;
    font-size: 0.7rem;
    font-weight: 500;
}

    .card.in-view,
    .card.clicked {
        transform: scale(1.1);
        box-shadow: 0 20px 45px rgba(0.8, 0.8, 0.8, 0.35);
    }

    .card.in-view h3,
    .card.clicked h3 {
        inset: auto auto 70px 30px;
        transition: inset 0.3s ease-out;
    }

    .card.in-view p,
    .card.clicked p {
        opacity: 1;
        inset: auto auto 25px 30px;
        transition: opacity 0.5s 0.1s ease-in;
    }

.pricing-card {
    --grad: red, blue;
    position: relative;
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 
        inset -2px 2px hsl(0 0 100% / 1),
        -20px 20px 40px hsl(0 0 0% / 0.25);
    padding: 0.8rem;
    width: 16.5rem;
    height: 21.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 0.14rem;
    background: linear-gradient(to right, var(--grad));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

    .pricing-card.in-view,
    .pricing-card.clicked {
        transform: scale(1.05);
        box-shadow: 
            inset -2px 2px hsl(0 0 100% / 1),
            -25px 25px 50px hsl(0 0 0% / 0.3);
    }

    .pricing h2 {
        font-size: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .pricing-card .price {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .pricing-card .price sub {
        font-size: 0.8rem;
    }

    .pricing-card ol li {
        font-size: 0.8rem;
        padding-left: 1.2rem;
    }

    .pricing-button {
        max-width: 10rem;
        height: 2.5rem;
        font-size: 0.9rem;
        border: 2px solid #6f0000;
    }

    .pricing-button i {
        margin-left: 1.2rem;
        font-size: 0.8rem;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-column {
        max-width: 90%;
        min-width: 0;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }

    .footer-column ol li {
        font-size: 0.85rem;
    }

    .footer-social {
        overflow: hidden;
    }

    .social-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .social-links {
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: center;
        width: 100%;
    }

    .social-links a {
        width: 2.5rem;
        height: 2.5rem;
        line-height: 2.5rem;
        font-size: 1.5rem;
        margin: 0;
        opacity: 0;
        transform: scale(0.8);
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .social-links a.visible {
        opacity: 1;
        transform: scale(1);
    }

    .social-links a.visible:nth-child(1) {
        background: #4267B2;
        border-color: #fff;
    }

    .social-links a.visible:nth-child(2) {
        background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        border-color: #fff;
    }

    .social-links a.visible:nth-child(3) {
        background: #FF0000;
        border-color: #fff;
    }

    .social-links a.visible:nth-child(4) {
        background: #0077B5;
        border-color: #fff;
    }

    .social-links a.visible i {
        color: #fff;
    }

    .recognition-logos img {
        width: 80px;
    }
}