@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --base-sdb: #11121a;
    --line-sdb: #42434a;
    --hover-sdb: #222533;
    --text-sdb: #e6e6ef;
    --accent-sdb: #3b82f6;
    /* Changed to a cool blue */
    --secondary-text-sdb: #b0b3c1;
    --section-bg: #181a23;
}


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

html {
    font-family: Poppins, 'Segoe UI';
    line-height: 1.6;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-sdb) var(--base-sdb);
}

body {
    background-color: var(--base-sdb);
    color: var(--text-sdb);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

button.to-top {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    border: 0;
    color: var(--text-color);
    text-align: center;
    padding: 0 10px;
    background-color: rgba(0, 0, 0, 0);
    font-size: 20px;
}

/* Custom Icon untuk Logo */
.fa-akfo-brand {
    display: inline-block;
    width: 3em;
    height: 1em;
    background-image: url('./assets/img/logo-brand.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.fa-akfo {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url('./assets/img/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.fa-akfo-white {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url('./assets/img/logo-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

/* Navigation Styles */
nav {
    background: rgba(17, 18, 26, 0.7);
    /* background: rgba(17, 18, 26, 0.1); */
    /* background: linear-gradient(135deg, rgba(17, 18, 26, 0.95) 0%, rgba(34, 37, 51, 0.95) 100%); */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* border-bottom: 1px solid var(--line-sdb); */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-sdb);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.logo i {
    color: var(--accent-sdb);
}

.logo span span {
    color: var(--accent-sdb);
}

/* Main Navigation */
.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0 2rem 1rem;
    justify-content: center;
    position: relative;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    color: var(--text-sdb);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links>li>a:hover {
    color: var(--accent-sdb);
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-sdb);
    transition: width 0.3s ease;
}

.nav-links>li>a:hover::after {
    width: 100%;
}

.nav-links>li>a .fa-chevron-down {
    margin-right: 5px;
    margin-left: 5px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--section-bg);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--line-sdb);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
}

.nav-links>li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    color: var(--secondary-text-sdb);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--accent-sdb);
}

/* Sub-dropdown Menu */
.sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    right: auto;
    background-color: var(--section-bg);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--line-sdb);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    list-style: none;
}

.sub-dropdown-menu.left {
    left: auto;
    right: 100%;
    transform: translateX(-10px);
}

.dropdown-menu li:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-menu li:hover .sub-dropdown-menu.left {
    transform: translateX(0);
}

.dropdown-menu li a .fa-chevron-right {
    transition: transform 0.3s ease;
    margin-right: 5px;
    margin-left: 5px;
}

.dropdown-menu li a .fa-chevron-right.left {
    transform: rotate(180deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-sdb);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 100;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger-inner {
    display: block;
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-sdb);
    border-radius: 4px;
    left: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-sdb);
    border-radius: 4px;
    left: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.hamburger.open .hamburger-inner {
    transform: rotate(135deg);
    /* background: var(--primary); */
}

.hamburger.open .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    /* background: var(--primary); */
}

.hamburger.open .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    opacity: 0;
}

/* Mobile Navigation Styles */
@media (max-width: 850px) {
    nav {
        flex-direction: column;
    }

    .nav-links {
        position: fixed;
        padding-top: 200px;
        top: 70px;
        right: -100vw;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: var(--base-sdb);
        padding: 2rem 1.5rem;
        height: calc(100vh - 70px);
        overflow-y: auto;
        width: 100vw;
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(-100vw);
    }

    .nav-links>li {
        width: 100%;
    }

    .nav-links>li>a {
        padding: 0.8rem;
        justify-content: space-between;
        font-size: 0.9rem;
    }

    .nav-links>li>a::after {
        display: none;
    }

    .dropdown-menu,
    .sub-dropdown-menu {
        position: static;
        padding: 0;
        box-shadow: none;
        border: none;
        border-radius: unset;
        padding-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block;
        background-color: transparent;
    }

    .dropdown-menu.active,
    .sub-dropdown-menu.active {
        max-height: 1000px;
    }

    .dropdown-menu li a {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(17, 18, 26, 0.7);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .single-post-container {
        flex-direction: column-reverse !important;
    }
}

/* Very small screens (below 300px) */
@media (max-width: 300px) {
    .nav-links {
        padding: 1rem;
    }

    .nav-links>li>a {
        font-size: 0.8rem;
        padding: 0.6rem 0;
    }

    .dropdown-menu li a {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        font-size: 1.2rem;
    }
}

@media (min-width: 851px) {
    nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links {
        padding: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-links {
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .nav-links {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .logo {
        font-size: 1.3rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(94, 99, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content h1 span span {
    color: var(--accent-sdb);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--secondary-text-sdb);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-sdb);
    color: white;
    border: 2px solid var(--accent-sdb);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-sdb);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-sdb);
    border: 2px solid var(--line-sdb);
}

.btn-secondary:hover {
    border-color: var(--accent-sdb);
    color: var(--accent-sdb);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    width: 100%;
    max-width: 500px;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--line-sdb);
    transition: transform 0.5s ease;
}

.dashboard-preview:hover {
    transform: translateY(-10px);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background-color: var(--section-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--secondary-text-sdb);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-flex {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--base-sdb);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--line-sdb);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-sdb);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(94, 99, 255, 0.1) 0%, rgba(17, 18, 26, 0.5) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-sdb);
    font-size: 1.5rem;
    border: 1px solid var(--accent-sdb);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--secondary-text-sdb);
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--section-bg);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--line-sdb);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--accent-sdb);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    color: var(--secondary-text-sdb);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-sdb);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--secondary-text-sdb);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background-color: var(--section-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--base-sdb);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    border: 1px solid var(--line-sdb);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-sdb);
}

.pricing-card.popular::before {
    content: 'Popular';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-sdb);
    color: white;
    padding: 0.25rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 0.5rem;
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-sdb);
    margin-bottom: 0.5rem;
}

.pricing-header .price span {
    font-size: 1rem;
    color: var(--secondary-text-sdb);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-text-sdb);
}

.pricing-features li i {
    color: var(--accent-sdb);
}

.pricing-btn {
    width: 100%;
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(94, 99, 255, 0.1) 0%, rgba(17, 18, 26, 0.8) 100%);
    border-top: 1px solid var(--line-sdb);
    border-bottom: 1px solid var(--line-sdb);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    color: var(--secondary-text-sdb);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* Short Link Section */
.short-link {
    padding: 6rem 2rem;
    background-color: var(--section-bg);
    border-radius: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--base-sdb);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-sdb);
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #0a0a10;
    padding: 50px 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-sdb);
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo i {
    color: var(--accent-sdb);
}

.footer-logo span span {
    color: var(--accent-sdb);
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: var(--secondary-text-sdb);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-sdb);
}

.footer-social-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 30px;
}

.footer-social-links li {
    margin: 0 10px;
}

.footer-social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--section-bg);
    color: var(--text-sdb);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: var(--accent-sdb);
    transform: translateY(-3px);
}

.copyright,
.copyright a {
    color: var(--secondary-text-sdb);
    font-size: 0.9rem;
}

.copyright a {
    font-weight: 700;
    text-decoration: none;
}

.typed-cursor {
    color: var(--accent-sdb);
    opacity: 1;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ... (keep all existing styles until the footer) ... */

/* Partners Section */
.partners {
    padding: 4rem 2rem;
    background-color: var(--base-sdb);
    overflow: hidden;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-slider {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.partner-logo {
    height: 60px;
    filter: brightness(0.8);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background-color: var(--section-bg);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll-reverse 30s linear infinite;
}

.testimonial-card {
    min-width: 350px;
    background-color: var(--base-sdb);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--line-sdb);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--accent-sdb);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    color: var(--accent-sdb);
    margin-bottom: 1rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    color: var(--secondary-text-sdb);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-sdb);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--secondary-text-sdb);
    font-size: 0.9rem;
}

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

    100% {
        transform: translateX(0);
    }
}

/* Very very small screens (125px - 300px) */
@media (max-width: 300px) {


    /* Hero Section */
    .hero {
        padding: 4rem 0.8rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }

    /* Sections */
    .features,
    .short-link,
    .testimonials,
    .cta {
        padding: 3rem 0.8rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 0.8rem;
    }

    /* Feature Cards */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    /* Footer */
    footer {
        padding: 2rem 0.8rem;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links li {
        margin: 0.2rem 0;
    }

    .footer-social-links a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.8rem;
    }

    .copyright {
        font-size: 0.7rem;
    }
}

/* Extreme small screens (below 125px) */
@media (max-width: 125px) {

    /* Hide some elements to save space */
    .logo span:not(.fa-akfo) {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.2rem;
    }

    .hero-content p {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .feature-icon {
        display: none;
    }

    .footer-logo span {
        display: none;
    }

    .footer-social-links {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .footer-social-links li {
        margin: 0.1rem;
    }

    .footer-social-links a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 0.7rem;
    }
}

/* Very small screens (below 340px) */
@media (max-width: 340px) {

    /* Base Adjustments */
    html {
        font-size: 14px;
    }

    .nav-links {
        top: 58px;
    }

    /* Hero Section */
    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    /* Sections */
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .footer-links li {
        margin: 0 0.5rem;
    }
}

/* Extreme small screens (125px - 200px) */
@media (max-width: 200px) {


    /* Hero Section */
    .hero {
        padding: 4rem 0.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-image {
        display: none;
    }

    /* Sections */
    .section-title h2 {
        font-size: 1.4rem;
    }

    /* Buttons */
    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }

    /* Feature Cards */
    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Footer */
    .footer-logo {
        font-size: 1.1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Super extreme small screens (below 125px) */
@media (max-width: 125px) {

    /* Navigation */
    .logo span:not(.fa-akfo) {
        display: none;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .hero-content p {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Sections */
    .section-title h2 {
        font-size: 1.2rem;
    }

    /* Feature Cards */
    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.7rem;
    }

    /* Footer */
    .footer-social-links {
        gap: 0.2rem;
    }

    .footer-social-links a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 0.7rem;
    }
}