/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Geist", sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

.header-content {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    position: relative;
    height: 2rem;
    width: 2rem;
    overflow: hidden;
    border-radius: 0.375rem;
    background: linear-gradient(135deg, #2563eb, #4338ca);
}

.shield-icon {
    position: absolute;
    height: 1.5rem;
    width: 1.5rem;
    color: white;
    transform: translate(0.25rem, 0.25rem);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #4338ca);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2563eb;
}

.mobile-menu-btn {
    display: block;
    margin-left: 1rem;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background-color: #f1f5f9;
}

.menu-icon {
    height: 1.5rem;
    width: 1.5rem;
    color: #374151;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 50;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 768px) {
    .mobile-menu-overlay {
        display: none;
    }
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 75%;
    max-width: 20rem;
    background-color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-menu-close {
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.mobile-menu-close:hover {
    background-color: #f1f5f9;
}

.mobile-menu-close svg {
    height: 1.5rem;
    width: 1.5rem;
    color: #374151;
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #2563eb;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
    gap: 0.5rem;
    font-family: "Geist", sans-serif;
}

.btn:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn-blue {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    height: 2.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: auto;
    max-width: max-content;
}

.btn-blue:hover {
    background-color: #1d4ed8;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    height: 2.5rem;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: white;
    color: #1d4ed8;
    padding: 0.75rem 2rem;
    height: 2.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.75rem 2rem;
    height: 2.75rem;
}

.btn-outline:hover {
    background-color: white;
    color: #1d4ed8;
}

.btn-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    height: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.2);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.btn-icon {
    height: 1.25rem;
    width: 1.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background-color: white;
    padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0 8rem;
    }
}

.hero-bg-decoration {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(3rem);
}

.hero-bg-1 {
    top: -6rem;
    right: -6rem;
    background-color: #dbeafe;
}

.hero-bg-2 {
    bottom: -6rem;
    left: -6rem;
    background-color: #e0e7ff;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-content {
        gap: 2.5rem;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-text {
        gap: 1.5rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-weight: 500;
    background-color: #dbeafe;
    color: #1e40af;
    font-size: 1.25rem;
    justify-content: center;
    width: auto;
    max-width: max-content;
}

.pulse-dot {
    display: flex;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 50%;
    background-color: #2563eb;
    animation: pulse 2s infinite;
    margin-right: 0.5rem;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #111827, #1e40af, #4338ca);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.625rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.hero-description {
    font-size: 1rem;
    max-width: 48rem;
    margin: 0 auto;
    color: rgb(71 85 105);
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding-top: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image {
    width: 100%;
    max-width: 80rem;
    margin-top: 1rem;
    position: relative;
}


.hero-image-container {
    position: relative;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.hero-image-container img {
    width: 100%;
    height: auto;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border: 1px solid #e2e8f0;
    display: none;
}

@media (min-width: 768px) {
    .floating-card {
        display: flex;
    }
}

.floating-card-1 {
    right: -1rem;
    top: 25%;
}

.floating-card-2 {
    left: -1rem;
    bottom: 25%;
}

.floating-card-3 {
    right: -1rem;
    bottom: -1rem;
}

@media (min-width: 640px) {
    .floating-card-3 {
        display: flex;
    }
}

.floating-card-4 {
    left: -1rem;
    bottom: -1rem;
}

@media (min-width: 640px) {
    .floating-card-4 {
        display: flex;
    }
}

.floating-card-5 {
    right: -1rem;
    top: 33.333333%;
}

@media (min-width: 640px) {
    .floating-card-5 {
        display: flex;
    }
}

.floating-card-6 {
    left: -1rem;
    top: 33.333333%;
}

@media (min-width: 640px) {
    .floating-card-6 {
        display: flex;
    }
}

.floating-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-card-icon {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon svg {
    height: 1.25rem;
    width: 1.25rem;
}

.floating-card-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.floating-card-icon-orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.floating-card-icon-amber {
    background-color: #fef3c7;
    color: #d97706;
}

.floating-card-icon-red {
    background-color: #fecaca;
    color: #dc2626;
}

.floating-card-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.floating-card-subtitle {
    font-size: 0.75rem;
}

.floating-card-subtitle-green {
    color: #16a34a;
}

.floating-card-subtitle-orange {
    color: #ea580c;
}

.floating-card-subtitle-amber {
    color: #d97706;
}

.floating-card-subtitle-red {
    color: #dc2626;
}

.hero-scroll {
    padding-top: 1.5rem;
    animation: bounce 1s infinite;
}

@media (min-width: 768px) {
    .hero-scroll {
        padding-top: 2rem;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.scroll-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: #475569;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.scroll-btn:hover {
    color: #374151;
}

.scroll-icon {
    height: 1rem;
    width: 1rem;
    margin-left: 0.25rem;
}

/* Section Styles */
.section-bg-decoration {
    position: absolute;
    width: 50rem;
    height: 50rem;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(3rem);
    z-index: -1;
}

.section-bg-1 {
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, white, #f8fafc);
}

.section-bg-2 {
    top: -31.25rem;
    right: -25rem;
    background-color: #dbeafe;
}

.section-bg-3 {
    top: -18.75rem;
    left: -25rem;
    background-color: #f3e8ff;
}

.section-bg-4 {
    bottom: -18.75rem;
    right: -25rem;
    background-color: #dbeafe;
}

.section-bg-5 {
    top: -18.75rem;
    left: -25rem;
    background-color: #dbeafe;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1rem;
    color: #475569;
}

@media (min-width: 640px) {
    .section-description {
        font-size: 1.125rem;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-weight: 500;
    font-size: 1.25rem;
}

.section-badge-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.section-badge-purple {
    background-color: #f3e8ff;
    color: #7c3aed;
    width: auto;
    max-width: max-content;
}

.badge-icon {
    height: 1rem;
    width: 1rem;
    margin-right: 0.25rem;
}

/* Features Section */
.features {
    padding: 4rem 0 6rem;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .features {
        padding: 6rem 0;
    }
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .features-grid {
        flex-direction: row;
        gap: 4rem;
    }
}

.features-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


@media (min-width: 768px) {
    .features-content {
        gap: 1rem;
    }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 12px;
}

@media (min-width: 640px) {
    .features-list-title {
        font-size: 1.25rem;
    }
}

.feature-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon {
    border-radius: 50%;
    background-color: #dcfce7;
    padding: 0.25rem;
    margin-top: 0.125rem;
    color: #16a34a;
    display: flex;
}

.feature-icon svg {
    height: 1.25rem;
    width: 1.25rem;
}

.feature-title {
    font-weight: 500;
}

.feature-description {
    color: #64748B;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.features-image {
    flex: 1;
    position: relative;
}

.features-image-container {
    position: relative;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.features-image-container img {
    width: 100%;
    height: auto;
}

/* Security Section */
.security {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .security {
        padding: 6rem 0;
    }
}

.security-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .security-grid {
        flex-direction: row-reverse;
        gap: 4rem;
    }
}

.security-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .security-content {
        gap: 1rem;
    }
}

.security-threats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.security-threats-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 12px;
}

@media (min-width: 640px) {
    .security-threats-title {
        font-size: 1.25rem;
    }
}

.threats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .threats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.threat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.threat-icon {
    border-radius: 50%;
    background-color: #fecaca;
    padding: 0.25rem;
    margin-top: 0.125rem;
    color: #dc2626;
    display: flex;
}

.threat-icon svg {
    height: 1.25rem;
    width: 1.25rem;
}

.threat-item span {
    font-weight: 500;
}

.security-image {
    flex: 1;
    position: relative;
}

.security-image-container {
    position: relative;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.security-image-container img {
    width: 100%;
    height: auto;
}

/* Why DevForge Section */
.why-devforge {
    padding: 4rem 0 5rem;
    background: linear-gradient(to bottom, white, #f8fafc);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .why-devforge {
        padding: 5rem 0;
    }
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.25rem);
}

.feature-card-icon {
    margin-bottom: 1.5rem;
    position: relative;
    color: #2563eb;
}

.feature-card-icon-bg {
    position: absolute;
    inset: 0;
    background-color: #dbeafe;
    border-radius: 50%;
    filter: blur(1rem);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.feature-card:hover .feature-card-icon-bg {
    opacity: 1;
}

.feature-card-icon svg {
    position: relative;
    height: 3rem;
    width: 3rem;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.feature-card:hover .feature-card-title {
    color: #2563eb;
}

.feature-card-description {
    color: #475569;
}

/* Services Section */
.services {
    padding: 4rem 0 6rem;
}

@media (min-width: 768px) {
    .services {
        padding: 6rem 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        margin-bottom: 5rem;
    }
}

.services-grid-reverse {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .services-grid-reverse .service-content {
        order: 2;
    }
    
    .services-grid-reverse .service-image {
        order: 1;
    }
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .service-title {
        font-size: 1.5rem;
    }
}

.service-description {
    font-size: 1rem;
    color: #475569;
}

@media (min-width: 640px) {
    .service-description {
        font-size: 1.125rem;
    }
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-feature-icon {
    border-radius: 100%;
    padding: 0.25rem;
    margin-top: 0.125rem;
    display: flex;
}

.service-feature-icon-red {
    background-color: #fecaca;
    color: #dc2626;
}

.service-feature-icon svg {
    height: 1.25rem;
    width: 1.25rem;
}

.service-feature-title {
    font-weight: 500;
}

.service-feature-description {
    color: #64748B;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.service-image {
    position: relative;
}

.service-image-container {
    position: relative;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.service-image-container img {
    width: 100%;
    height: auto;
}

/* Mission Section */
.mission {
    padding: 5rem 0 7rem;
    background: linear-gradient(135deg, #2563eb, #4338ca);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .mission {
        padding: 7rem 0;
    }
}

.mission-bg-decoration {
    position: absolute;
    width: 50rem;
    height: 50rem;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(3rem);
}

.mission-bg-1 {
    top: -25rem;
    left: -25rem;
    background-color: #60a5fa;
}

.mission-bg-2 {
    bottom: -25rem;
    right: -25rem;
    background-color: #818cf8;
}

.mission-floating-decoration {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    filter: blur(1rem);
    display: none;
}

@media (min-width: 1024px) {
    .mission-floating-decoration {
        display: block;
    }
}

.mission-floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 6rem;
    height: 6rem;
}

.mission-floating-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
}

.mission-content {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    margin-bottom: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mission-badge span {
    padding: 1.25rem 1.25rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mission-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .mission-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .mission-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .mission-title {
        font-size: 3.75rem;
    }
}

.mission-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
    .mission-card {
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .mission-card {
        padding: 2.5rem;
    }
}

.mission-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .mission-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .mission-description {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .mission-description {
        font-size: 1.5rem;
    }
}

.mission-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .mission-tagline {
        margin-bottom: 1.5rem;
    }
}

.mission-icon {
    height: 1.25rem;
    width: 1.25rem;
    margin-right: 0.5rem;
    color: #fbbf24;
}

@media (min-width: 640px) {
    .mission-icon {
        height: 1.5rem;
        width: 1.5rem;
        margin-right: 0.75rem;
    }
}

.mission-tagline span {
    font-size: 1.125rem;
    font-weight: 500;
}

@media (min-width: 640px) {
    .mission-tagline span {
        font-size: 1.25rem;
    }
}

.mission-supporting-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .mission-supporting-text {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
}

.mission-supporting-text p {
    font-size: 1rem;
}

@media (min-width: 640px) {
    .mission-supporting-text p {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .mission-supporting-text p {
        font-size: 1.25rem;
    }
}

.mission-partner {
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0 6rem;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .pricing {
        padding: 6rem 0;
    }
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

.pricing-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transform: translateY(-0.25rem);
}

.pricing-header {
    padding: 1.5rem;
    text-align: center;
    color: rgb(255 255 255 / 80%);
}

.pricing-header-silver {
    background: linear-gradient(135deg, #475569, #374151);
}

.pricing-header-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-subtitle {
    opacity: 0.8;
    margin-top: 0.25rem;
}

.pricing-content {
    padding: 1.5rem;
    text-align: center;
    height: 495px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .pricing-content {
        padding: 2rem;
    }
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-price {
        margin-bottom: 2rem;
    }
}

.price {
    font-size: 1.875rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .price {
        font-size: 2.25rem;
    }
}

.price-period {
    color: #64748B;
    margin-left: 0.5rem;
}

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

@media (min-width: 768px) {
    .pricing-features {
        margin-bottom: 2rem;
    }
}

.pricing-features-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.pricing-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-feature-icon {
    border-radius: 100%;
    background-color: #dcfce7;
    padding: 0.25rem;
    margin-top: 0.125rem;
    color: #16a34a;
    display: flex;
}

.pricing-feature-icon svg {
    height: 1.25rem;
    width: 1.25rem;
}

.pricing-feature-title {
    font-weight: 500;
}

.pricing-feature-description {
    color: #475569;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.pricing-btn {
    width: 100%;
    box-shadow: 0 10px 15px -3px rgba(71, 85, 105, 0.2);
}

/* CTA Section */
.cta {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, #2563eb, #4338ca);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta {
        padding: 5rem 0;
    }
}

.cta-bg-decoration {
    position: absolute;
    top: -25rem;
    right: -25rem;
    width: 50rem;
    height: 50rem;
    background-color: #60a5fa;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(3rem);
}

.cta-content {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1rem;
}

@media (min-width: 640px) {
    .cta-description {
        font-size: 1.25rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding-top: 1.5rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0 5rem;
    background-color: #f8fafc;
}

@media (min-width: 768px) {
    .testimonials {
        padding: 5rem 0;
    }
}

.testimonial-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonial-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.25rem);
}

.testimonial-rating {
    display: flex;
    margin-bottom: 1rem;
}

.star {
    height: 1.25rem;
    width: 1.25rem;
}

.star-filled {
    color: #fbbf24;
}

.star-empty {
    color: #e2e8f0;
}

.testimonial-quote {
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #334155;
}

.testimonial-quote p {
    color: #374151;
    font-style: italic;
}

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

.testimonial-avatar {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #4338ca);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
}

.testimonial-info {
    margin-left: 0.75rem;
}

.testimonial-name {
    font-weight: 500;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #64748B;
}

/* Footer */
.footer {
    border-top: 1px solid #e2e8f0;
    background-color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 1;
}

.footer-description {
    font-size: 0.875rem;
    color: #475569;
    margin: 1rem 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #94a3b8;
    transition: color 0.2s;
}

.social-link:hover {
    color: #475569;
}

.social-link svg {
    height: 1.25rem;
    width: 1.25rem;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.footer-made-with {
    font-size: 0.875rem;
    color: #475569;
}

/* Responsive Utilities */
@media (max-width: 767px) {
    .mobile-menu-overlay.active {
        display: block;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}
@media (max-width: 992px) {
    .pricing-content{
        height: auto;
    }
}