@import url('https://fonts.googleapis.com/css2?family=Kelly+Slab&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montagu+Slab:opsz,wght@16..144,100..700&family=Slabo+27px&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* display: flex; */
@font-face {
    font-family: 'Wallpoet';
    font-style: normal;
    font-weight: 400;
    src: local('Wallpoet'), url(https://fonts.gstatic.com/s/wallpoet/v11/f0X10em2_8RnXVVdUObp58Tt868H.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Iceberg';
    font-style: normal;
    font-weight: 400;
    src: local('Iceberg'), local('Iceberg-Regular'), url(https://fonts.gstatic.com/s/iceberg/v7/8QIJdijAiM7o-qnZiI8EqprnEO0.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@import url('https://fonts.googleapis.com/css?family=Dosis');
@import url('https://fonts.googleapis.com/css?family=Bungee');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&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');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&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&family=Sora:wght@100..800&display=swap');

*,
html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    color: var(--colorText);
}


:root {
    --dark-bg: #030713;
    --dark-text: #fff;
    --light-bg: #fff;
    --light-text: #000;
    --description-color: #868686;
    --color-accent: #0a65ff;
    --color-accent-2: #6889ff;
}

:root {
    --scroll-color: #609aff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0e0b22;
}

::-webkit-scrollbar-thumb {
    background: var(--scroll-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scroll-color);
}

.text-gradient {
    background: linear-gradient(270deg,
            #ec70ff,
            #5c27e3,
            #ff00b7,
            #ec70ff);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body {
    background-color: var(--dark-bg);
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dark-mode {
    background-color: var(--light-bg);
    color: var(--light-text);
}

.navbar {
    background-color: var(--dark-bg);
    color: var(--dark-text);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #242424;
}

.navbar .container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 45px;
}

.navbar .container ul {
    display: flex;
    list-style: none;
    margin-left: auto;
    gap: 30px;
    flex: 1;
    /* padding: 0 60px; */
    width: 100%;
}

.navbar .container ul li {
    margin: 0 10px;
}

.navbar .container ul li .nav-link {
    font-family: var(--nav-font);
    color: var(--heading2-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar .container ul li .nav-link:hover {
    color: var(--color-accent);
}

.navbar .container ul li .nav-link2 {
    font-family: var(--nav-font);
    color: white;
    filter: drop-shadow(0 0 10px rgba(111, 57, 245, 0.4));
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
    text-decoration: none;
    background-size: 600% 600%;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid var(--color-accent);
    transition: all 600ms ease-in-out;
}

.navbar .container ul li .nav-link2:hover {
    filter: drop-shadow(0 0 10px rgba(111, 57, 245, 0.4));
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    border: 1px solid var(--color-accent);
}

.navbar .container .logo img {
    width: auto;
    position: static;
    height: 70px;
}


.navbar .container .button .button-link {
    font-family: var(--nav-font);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(111, 57, 245, 0.4));
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
    background-size: 600% 600%;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid var(--color-accent);
    transition: all 600ms ease-in-out;
}

.navbar .container .button .button-link:hover {
    filter: drop-shadow(0 0 10px rgba(111, 57, 245, 0.4));
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    border: 1px solid var(--color-accent);
}


.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-bg);
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 120px;
    overflow: hidden;
}

.hero .container {
    position: relative;
    padding: 120px 0 40px 0;
    width: 100%;
}

.hero .container .hero-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero .container .hero-content .hero-title {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    font-size: 6cqmax;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 0.9;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 38, 255, 0.433));
}

.hero .container .hero-content .hero-description {
    font-family: 'Montserrat', sans-serif;
    color: var(--description-color);
    font-size: 16px;
    margin-top: 20px;
    font-weight: 400;
    text-align: center;
    transition: color 0.3s ease;
}

.tag {
    background-color: #0a64ff30;
    padding: 10px 12px;
    border: solid 1px #0040ae;
    border-radius: 99px;
    display: inline-flex;
    width: fit-content;
    gap: 8px;
    transition: all 0.3s ease;
}

.tag i {
    margin-right: 10px;
}

/* .tag:hover {

} */

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px 220px at 50% 0%,
            rgba(0, 122, 255, 0.15) 0%,
            rgba(0, 122, 255, 0.1) 40%,
            rgba(0, 64, 255, 0.4) 65%,
            transparent 75%),
        radial-gradient(650px 420px at 50% -15%,
            rgba(0, 100, 255, 0.3),
            transparent 70%),
        radial-gradient(500px 320px at 25% 5%,
            rgba(0, 150, 255, 0.1),
            transparent 70%),
        linear-gradient(to bottom, var(--dark-bg) 0%, var(--dark-bg) 60%, var(--dark-bg) 100%);

    filter: blur(60px);
    transform: scale(1.15);
}

.input-url {
    display: flex;
    position: relative;
    width: 50%;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background-color: #050d23;
    gap: 15px;
    border-radius: 10px;
}

.input-url input {
    padding: 10px 12px;
    border: solid 1px #0040ae;
    display: inline-flex;
    width: 100%;
    color: white;
    background-color: transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.input-url input:focus {
    outline: none;
    border: solid 1px #0040ae;
    box-shadow: 0 0 10px rgba(0, 38, 255, 0.433);
}

.input-url button {
    padding: 10px 12px;
    border: solid 1px #0040ae;
    display: inline-flex;
    width: fit-content;
    cursor: pointer;
    color: white;
    background-color: #0040ae;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.input-url button:hover {
    background-color: #050d23;
    border: solid 1px #0040ae;
    box-shadow: 0 0 10px rgba(0, 38, 255, 0.433);
    color: white;
}

.benefits {
    position: relative;
    width: 100%;
    min-height: 80vh;
    height: auto;
    background-color: #050d23;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 120px;
    overflow: hidden;
}

.benefits .container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.benefits .container .benefits-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.benefits .container .benefits-content .benefits-title {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    font-size: 40px;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 0.9;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 38, 255, 0.433));
}

.benefits .container .benefits-content .benefits-description {
    font-family: 'Montserrat', sans-serif;
    color: var(--description-color);
    font-size: 16px;
    margin-top: 20px;
    font-weight: 400;
    text-align: center;
    transition: color 0.3s ease;
}

.benefits .container .benefits-content .card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.benefits .container .benefits-content .card-container .card {
    position: relative;
    width: 300px;
    min-height: 260px;
    height: auto;
    padding: 25px 24px;
    background-color: var(--dark-bg);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefits .container .benefits-content .card-container .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: solid 1px #0a65ff;
}

.benefits .container .benefits-content .card-container .card:hover .content .icon {
    color: white;
    background-color: #0a65ff;
}

.benefits .container .benefits-content .card-container .card .content {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.benefits .container .benefits-content .card-container .card .content .card-title {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 0.9;
    filter: drop-shadow(0 0 20px rgba(0, 38, 255, 0.433));
}

.benefits .container .benefits-content .card-container .card .content .card-description {
    font-family: 'Montserrat', sans-serif;
    color: var(--description-color);
    font-size: 16px;
    margin-top: 20px;
    font-weight: 400;
    text-align: center;
    transition: color 0.3s ease;
}

.benefits .container .benefits-content .card-container .card .content .icon {
    color: #0a65ff;
    position: relative;
    font-size: 18px;
    margin-bottom: 10px;
    background-color: #050d23;
    padding: 10px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* =========================================
   API INTEGRATION SECTION
   ========================================= */
.api-integration {
    position: relative;
    width: 100%;
    padding: 100px 120px;
    background-color: var(--dark-bg);
}

.api-integration .container {
    width: 100%;
    margin: 0 auto;
}

.api-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.api-content .text-content {
    flex: 1;
}

.api-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 38, 255, 0.433));
}

.api-description {
    font-family: 'Montserrat', sans-serif;
    color: var(--description-color);
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.feature-list li {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.feature-list li i {
    color: var(--color-accent);
    font-size: 18px;
}

.code-preview {
    flex: 1;
    background: #050d23;
    border: 1px solid #1a2342;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    max-width: 500px;
}

/* Fake IDE Border Glow */
.code-preview::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(10, 101, 255, 0.4), transparent 60%);
    z-index: -1;
    border-radius: 14px;
}

.window-header {
    background: #0a1128;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #1a2342;
}

.window-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-header .dot.red {
    background: #ff5f56;
}

.window-header .dot.yellow {
    background: #ffbd2e;
}

.window-header .dot.green {
    background: #27c93f;
}

.code-preview pre {
    padding: 24px;
    margin: 0;
    overflow-x: auto;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #a9b7c6;
}

.code-preview pre code {
    color: #ce9178;
}

.code-preview pre code .keyword {
    color: #569cd6;
    font-weight: bold;
}

.code-preview pre code .function {
    color: #dcdcaa;
}

.code-preview pre code .string {
    color: #ce9178;
}

.code-preview pre code .comment {
    color: #6a9955;
    font-style: italic;
}

/* =========================================
   INFRASTRUCTURE SECTION
   ========================================= */
.infrastructure {
    background-color: #050d23;
    padding: 100px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.infra-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
}

.infra-description {
    font-family: 'Montserrat', sans-serif;
    color: var(--description-color);
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.stat-box {
    background: var(--dark-bg);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #1a2342;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 101, 255, 0.15);
    border-color: var(--color-accent);
}

.stat-box h2 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-box p {
    font-family: 'Montserrat', sans-serif;
    color: var(--description-color);
    font-weight: 500;
    margin: 0;
}

/* =========================================
   COMMUNITY / CTA SECTION
   ========================================= */
.dev-community {
    position: relative;
    padding: 120px;
    background-color: var(--dark-bg);
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 101, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.community-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: rgba(5, 13, 35, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #1a2342;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.community-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.community-content p {
    font-family: 'Montserrat', sans-serif;
    color: var(--description-color);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.outline-btn {
    font-family: 'Poppins', sans-serif;
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid var(--color-accent);
    background: transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.outline-btn:hover {
    background: rgba(10, 101, 255, 0.1);
    box-shadow: 0 0 15px rgba(10, 101, 255, 0.4);
    color: white;
}

/* =========================================
   FOOTER SECTION
   ========================================= */
footer {
    background-color: var(--dark-bg);
    padding: 80px 120px 40px;
    border-top: 1px solid #1a2342;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid #1a2342;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.footer-brand h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    font-family: 'Montserrat', sans-serif;
    color: var(--description-color);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-link-item h3 {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-link-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item ul li {
    margin-bottom: 15px;
}

.footer-link-item ul li a {
    font-family: 'Montserrat', sans-serif;
    color: var(--description-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link-item ul li a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    color: var(--description-color);
    font-size: 14px;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--description-color);
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--color-accent);
    transform: scale(1.1) translateY(-3px);
}

/* =========================================
   MOBILE RESPONSIVENESS & SIDEBAR
   ========================================= */

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--dark-text);
    cursor: pointer;
    z-index: 101;
}

.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px;
    color: var(--dark-text);
    cursor: pointer;
}

.mobile-signup {
    display: none;
    /* Hide in desktop */
}

@media (max-width: 991px) {

    /* Navbar to Sidebar */
    .menu-toggle {
        display: block;
    }

    .desktop-signup {
        display: none;
        /* Hide default signup button on mobile navbar */
    }

    .navbar-content {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--dark-bg);
        border-left: 1px solid #1a2342;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 40px;
        transition: right 0.4s ease-in-out;
        z-index: 105;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .navbar-content.active {
        right: 0;
    }

    .close-btn {
        display: block;
    }

    .navbar .container ul {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 20px;
    }

    .navbar .container ul li {
        width: 100%;
        margin: 0;
    }

    .navbar .container ul li .nav-link {
        font-size: 18px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-signup {
        display: block;
        width: 100%;
        margin-top: 30px;
    }

    .mobile-signup .button-link {
        display: block;
        text-align: center;
        width: 100%;
    }

    /* Padding Adjustments */
    .hero,
    .benefits,
    .api-integration,
    .infrastructure,
    .dev-community,
    footer {
        padding-left: 30px;
        padding-right: 30px;
    }

    /* Hero Text Adjustments */
    .hero .container .hero-content .hero-title {
        font-size: 40px;
    }

    .input-url {
        width: 100%;
        flex-direction: column;
    }

    .input-url button {
        width: 100%;
    }

    /* API Section Adjustments */
    .api-content {
        flex-direction: column;
        gap: 40px;
    }

    .code-preview {
        width: 100%;
    }

    /* Footer Adjustments */
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 20px;
    }

    .hero .container .hero-content .hero-title {
        font-size: 32px;
    }
}