* {
    margin: 0;
    padding: 0;
    font-family: "Archivo Narrow", Helvetica, sans-serif;
}

:root {
    --primary: #00b9b0;
}

a {
    text-decoration: none;
    color: currentColor;
}

.layout {
    margin: 0 auto;
    width: 70rem;
    max-width: 100%;
}

header .layout {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    align-items: center;
}

header {
    border-bottom: 1px solid #ccc5;
}

header .layout h1 {
    font-size: 1.5rem;
    color: var(--primary);
}

header nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

header a.button {
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 1rem;
}

.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero h3 {
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    margin-bottom: 1rem;
}

.hero p span {
    color: var(--primary);
    font-weight: 600;
}

#subdomain-form {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #ccc8;
    overflow: hidden;
    padding: 0.5rem;
    border-radius: 1rem;
    background: #f3f4f6;
    box-shadow: 0 20px 50px #0001;
}

#subdomain-form .form-group {
    display: flex;
    gap: 1rem;
    flex: 1;
}

#subdomain-form .search-items {
    display: none;
    flex-direction: column;
}

#subdomain-form .search-items .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border-top: 1px solid #ccc5;
    font-size: 0.8rem;
}

#subdomain-form .search-items .item .actions {
    display: flex;
    gap: 0.5rem;
}

#subdomain-form .search-items .item button {
    background: #000;
    color: #fff;
    padding: 0.2rem 1rem;
    border-radius: 0.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.7rem;
}

#subdomain-form input {
    border: none;
    outline: none;
    padding: 0.8rem;
    border-radius: 1rem;
    flex: 1;
    background: transparent;
}

#subdomain-form button {
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 0.8rem;
    border: none;
    cursor: pointer;
}

.testimonials {
    padding: 4rem 0;
    background: #f3f4f6;
}

.testimonials h2 {
    text-align: center;
    font-size: 1.5rem;
}

.testimonials p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.testimonials .items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.testimonials .item {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonials .item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonials .profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonials .item img,
.testimonials .item .logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials .item h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #111827;
}

.testimonials .item span {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Rating Stars Styling */
.testimonials .rating {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.testimonials .rating svg {
    width: 18px;
    height: 18px;
    fill: #f59e0b;
    /* Yellow/Gold Star Color */
}

.testimonials .item p {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}

.subdomains {
    padding: 4rem 0;
}

.subdomains h2 {
    text-align: center;
    font-size: 1.5rem;
}

.subdomains p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.subdomains .subdomains-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

.subdomains .subdomains-list .item {
    background-color: #ccc2;
    border: 1px solid #ccc8;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subdomains .subdomains-list .item .subdomain-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    /* Clean Globe/Web Link SVG directly embedded in CSS */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.login-form {
    max-width: 400px;
    height: calc(100vh - 8rem);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    padding: 4rem 0;
}

.login-form h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.login-form input {
    width: calc(100% - 2rem);
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc8;
    background: #f3f6f9;
    border-radius: 1rem;
}

.login-form button {
    background-color: var(--primary);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
}

.login-form hr {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid #ccc8;
}

.login-form .login-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #fff;
    color: #000;
    padding: 0.8rem;
    border: 1px solid #ccc8;
    border-radius: 1rem;
    cursor: pointer;
}

.otp-form {
    justify-content: flex-start;
}

.otp-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.otp-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111;
}

.otp-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.otp-content strong {
    color: #111;
    font-weight: 600;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.login-form .otp-inputs .otp-input {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc8;
    border-radius: 1rem;
    background: #f3f6f9;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    outline: none;
    box-sizing: border-box;
}

.login-form .otp-inputs .otp-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px #00b9b022;
    background: #fff;
}

.otp-change-email {
    text-align: center;
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.otp-change-email:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-form {
        width: calc(100% - 2rem);
        padding: 2rem 0;
    }

    .otp-inputs {
        gap: 0.5rem;
    }

    .login-form .otp-inputs .otp-input {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.25rem;
        border-radius: 0.75rem;
    }
}




footer {
    background: #000;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

footer .footer-sep {
    margin: 0 0.5rem;
}

footer .footer-copy {
    margin-top: 0.5rem;
}

/* ===== About Page Styles ===== */
.about-hero {
    padding: 5rem 0;
    text-align: center;
}

.about-hero h3 {
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
    color: #111827;
}

.about-hero h1 span {
    color: var(--primary);
}

.about-hero p {
    max-width: 40rem;
    margin: 0 auto;
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-story {
    padding: 4rem 0;
    background: #f3f4f6;
}

.about-story .layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-story h2 {
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 1rem;
}

.about-story h2 span {
    color: var(--primary);
}

.about-story p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-story .story-visual {
    background: linear-gradient(135deg, var(--primary), #00b9b0);
    border-radius: 1.5rem;
    color: #fff;
    padding: 3rem;
    min-height: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story .story-visual h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-story .story-visual span {
    font-size: 1rem;
    opacity: 0.9;
}

.about-mission {
    padding: 4rem 0;
}

.about-mission h2,
.about-features h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.about-mission>.layout>p,
.about-features>.layout>p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.about-mission .mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.about-mission .mission-item {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-mission .mission-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-mission .mission-item h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-mission .mission-item p {
    color: #4b5563;
    line-height: 1.6;
}

.about-features {
    padding: 4rem 0;
    background: #f3f4f6;
}

.about-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.about-features .feature-item {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-features .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-features .feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-features .feature-item h4 {
    color: #111827;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about-features .feature-item p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-cta {
    padding: 4rem 0;
}

.about-cta .cta-box {
    background: linear-gradient(135deg, var(--primary), #0041b0);
    color: #fff;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
}

.about-cta .cta-box h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.about-cta .cta-box p {
    max-width: 34rem;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-cta .cta-box a.button {
    background: #fff;
    color: var(--primary);
    padding: 0.75rem 2.5rem;
    border-radius: 1.5rem;
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 768px) {
    .about-story .layout {
        grid-template-columns: 1fr;
    }

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

/* ===== Shared Page Hero (Contact / Privacy / Terms) ===== */
.page-hero {
    padding: 5rem 0;
    text-align: center;
}

.page-hero h3 {
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
    color: #111827;
}

.page-hero h1 span {
    color: var(--primary);
}

.page-hero p {
    max-width: 40rem;
    margin: 0 auto;
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-section {
    padding: 4rem 0;
    background: #f3f4f6;
}

.contact-section .layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info .info-item h4 {
    color: #111827;
    font-size: 1.05rem;
}

.contact-info .info-item span {
    color: #6b7280;
}

.contact-form {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #111827;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc8;
    border-radius: 8px;
    background: #f3f6f9;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background: var(--primary);
    color: #fff;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-section .layout {
        grid-template-columns: 1fr;
    }

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

/* ===== Legal Pages (Privacy / Terms) ===== */
.legal-content {
    padding: 4rem 0;
    background: #f3f4f6;
}

.legal-content .layout {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.legal-meta {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content .legal-block {
    margin-bottom: 2rem;
}

.legal-content .legal-block h2 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.legal-content .legal-block p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content .legal-block ul {
    margin-left: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.legal-content .legal-block li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-content .layout {
        padding: 2rem 1.5rem;
    }
}

/* ===== Partners Page Styles ===== */
.partners-section {
    padding: 4rem 0;
    background: #f3f4f6;
}

.partners-section .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.partner-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.partner-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card h4 {
    color: #111827;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.partner-card .partner-title {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.partner-card .partner-email {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.partner-card .partner-description {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partner-card .partner-subdomain {
    display: inline-block;
    background: #f3f6f9;
    color: var(--primary);
    border: 1px solid #ccc8;
    border-radius: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.partner-card .partner-subdomain:hover {
    background: var(--primary);
    color: #fff;
}

.partners-section .no-partners {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    padding: 3rem 0;
}

footer .layout a {
    color: #fff;
}

footer .footer-sep {
    margin: 0 0.5rem;
    opacity: 0.6;
}

footer .footer-copy {
    margin-top: 0.5rem;
    color: #fff !important;
}

/* =========================================================
   RESPONSIVE MOBILE STYLES
   ========================================================= */

@media (max-width: 768px) {
    .layout {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }

    /* Header */
    header .layout {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        gap: 1rem;
    }

    header .layout h1 {
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    header nav {
        width: auto;
        max-width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    header nav::-webkit-scrollbar {
        display: none;
    }

    header nav ul {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.75rem;
        white-space: nowrap;
    }

    header nav a {
        font-size: 0.85rem;
    }

    header a.button {
        padding: 0.45rem 1rem;
        border-radius: 0.8rem;
    }

    /* Hero */
    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero h3 {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Subdomain Form */
    #subdomain-form {
        width: 100%;
        box-sizing: border-box;
        padding: 0.5rem;
        border-radius: 1rem;
    }

    #subdomain-form .form-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    #subdomain-form input {
        width: 100%;
        box-sizing: border-box;
        padding: 0.85rem;
    }

    #subdomain-form button {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    #subdomain-form .search-items .item {
        gap: 0.75rem;
        /* flex-wrap: wrap; */
    }

    #subdomain-form .search-items .item .actions {
        /* width: 100%; */
    }

    #subdomain-form .search-items .item button {
        width: 100%;
    }

    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials h2 {
        font-size: 1.4rem;
    }

    .testimonials p {
        margin-bottom: 2rem;
        font-size: 0.9rem;
    }

    .testimonials .items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonials .item {
        padding: 1.25rem;
    }

    /* Subdomains */
    .subdomains {
        padding: 3rem 0;
    }

    .subdomains h2 {
        font-size: 1.4rem;
    }

    .subdomains p {
        margin-bottom: 2rem;
        font-size: 0.9rem;
    }

    .subdomains .subdomains-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .subdomains .subdomains-list .item {
        padding: 0.75rem 1rem;
    }

    /* Login */
    .login-form {
        width: 100%;
        max-width: 400px;
        min-height: calc(100vh - 8rem);
        height: auto;
        box-sizing: border-box;
        padding: 2.5rem 1rem;
    }

    .login-form h1 {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .login-form input {
        width: 100%;
        box-sizing: border-box;
    }

    .login-form button,
    .login-form .login-google {
        width: 100%;
        box-sizing: border-box;
    }

    /* OTP */
    .otp-form {
        padding-top: 2rem;
    }

    .otp-content {
        margin-bottom: 1.25rem;
    }

    .otp-content h2 {
        font-size: 1.35rem;
    }

    .otp-content p {
        font-size: 0.85rem;
    }

    .otp-inputs {
        gap: 0.45rem;
        width: 100%;
    }

    .login-form .otp-inputs .otp-input {
        width: 100%;
        max-width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    /* About */
    .about-hero {
        padding: 3.5rem 0;
    }

    .about-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .about-hero p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-story {
        padding: 3rem 0;
    }

    .about-story .layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-story h2 {
        font-size: 1.5rem;
    }

    .about-story .story-visual {
        min-height: 12rem;
        padding: 2rem;
        border-radius: 1rem;
    }

    .about-story .story-visual h3 {
        font-size: 1.6rem;
    }

    .about-mission,
    .about-features,
    .about-cta {
        padding: 3rem 0;
    }

    .about-mission h2,
    .about-features h2 {
        font-size: 1.5rem;
    }

    .about-mission>.layout>p,
    .about-features>.layout>p {
        margin-bottom: 2rem;
        font-size: 0.9rem;
    }

    .about-mission .mission-grid,
    .about-features .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-mission .mission-item,
    .about-features .feature-item {
        padding: 1.25rem;
    }

    .about-cta .cta-box {
        padding: 2.5rem 1.25rem;
        border-radius: 1rem;
    }

    .about-cta .cta-box h2 {
        font-size: 1.6rem;
    }

    .about-cta .cta-box p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Page Hero */
    .page-hero {
        padding: 3.5rem 0;
    }

    .page-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-section .layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.35rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    /* Legal */
    .legal-content {
        padding: 2rem 0;
    }

    .legal-content .layout {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }

    .legal-content .legal-block {
        margin-bottom: 1.5rem;
    }

    .legal-content .legal-block h2 {
        font-size: 1.15rem;
    }

    .legal-content .legal-block p,
    .legal-content .legal-block ul {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Partners */
    .partners-section {
        padding: 3rem 0;
    }

    .partners-section .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partner-card {
        padding: 1.25rem;
    }

    /* Footer */
    footer {
        padding: 1.5rem 1rem;
    }

    footer .layout {
        padding-left: 0;
        padding-right: 0;
    }

    footer .footer-copy {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {
    .layout {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    /* Header */
    header .layout {
        align-items: center;
        gap: 0.75rem;
    }

    header .layout h1 {
        font-size: 1.2rem;
    }

    header nav ul {
        gap: 0.5rem;
    }

    header nav a {
        font-size: 0.78rem;
    }

    header a.button {
        padding: 0.4rem 0.75rem;
        border-radius: 0.7rem;
    }

    /* Hero */
    .hero {
        padding: 2.5rem 0 2rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.88rem;
    }

    /* OTP */
    .otp-inputs {
        gap: 0.35rem;
    }

    .login-form .otp-inputs .otp-input {
        max-width: 2.7rem;
        height: 2.7rem;
        border-radius: 0.7rem;
        font-size: 1.1rem;
    }

    /* About */
    .about-hero h1,
    .page-hero h1 {
        font-size: 1.75rem;
    }

    .about-hero p,
    .page-hero p {
        font-size: 0.88rem;
    }

    /* Footer */
    footer {
        font-size: 0.8rem;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {
    header .layout {
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav {
        width: fit-content;
    }

    header nav ul {
        width: max-content;
    }

    .hero h1 {
        font-size: 1.45rem;
    }

    .login-form .otp-inputs .otp-input {
        max-width: 2.45rem;
        height: 2.45rem;
        font-size: 1rem;
    }
}