/* ===================================
   Pages Stylesheet
   Common styles for all content pages
   =================================== */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.page-hero__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Page Content Section */
.page-content {
    padding: 80px 0;
    background: #ffffff;
}

.page-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Documentation Section */
.doc-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.doc-section:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.doc-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.3;
}

.doc-section__description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn--secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn--secondary:hover {
    background: #3b82f6;
    color: #ffffff;
}

/* Active Navigation Link */
.navbar__link--active {
    color: #3b82f6;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-content {
        padding: 60px 0;
    }

    .doc-section {
        padding: 32px 24px;
        margin-bottom: 24px;
    }

    .doc-section__title {
        font-size: 1.5rem;
    }

    .doc-section__description {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 50px;
    }

    .page-content {
        padding: 50px 0;
    }

    .doc-section {
        padding: 24px 20px;
        margin-bottom: 20px;
    }

    .page-hero__title {
        font-size: 2rem;
    }

    .page-hero__subtitle {
        font-size: 1rem;
    }
}

/* Animation for Page Load */
@media (prefers-reduced-motion: no-preference) {
    .doc-section {
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .doc-section:nth-child(1) { animation-delay: 0.1s; }
    .doc-section:nth-child(2) { animation-delay: 0.2s; }
    .doc-section:nth-child(3) { animation-delay: 0.3s; }
    .doc-section:nth-child(4) { animation-delay: 0.4s; }
    .doc-section:nth-child(5) { animation-delay: 0.5s; }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Print Styles */
@media print {
    .page-hero {
        background: none;
        padding: 20px 0;
    }

    .doc-section {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }

    .btn {
        display: none;
    }
}

/* ===================================
   DPE University Page Styles
   =================================== */

/* DPE Hero Section */
.dpe-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dpe-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.dpe-hero__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.dpe-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    line-height: 1.2;
}

.dpe-hero__highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dpe-hero__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
    line-height: 1.7;
}

.btn--large {
    padding: 16px 48px;
    font-size: 1.125rem;
}

/* DPE Experience Section */
.dpe-experience {
    padding: 80px 0;
    background: #f9fafb;
}

.dpe-experience__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.dpe-experience__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 48px;
}

.dpe-experience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.dpe-experience__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.dpe-experience__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.dpe-experience__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.dpe-experience__card-text {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* DPE Courses Section */
.dpe-courses {
    padding: 80px 0;
    background: #ffffff;
}

.dpe-courses__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.dpe-courses__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 48px;
}

.dpe-courses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.dpe-course-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.dpe-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.dpe-course-card__badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.dpe-course-card__badge--gradle {
    background: linear-gradient(135deg, #02303a 0%, #054f5e 100%);
}

.dpe-course-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.3;
}

.dpe-course-card__description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 20px;
}

.dpe-course-card__meta {
    display: flex;
    gap: 16px;
    font-size: 0.9375rem;
    color: #6b7280;
}

.dpe-course-card__sections::before {
    content: '📚 ';
}

.dpe-course-card__duration::before {
    content: '⏱️ ';
}

/* DPE Certificates Section */
.dpe-certificates {
    padding: 80px 0;
    background: #f9fafb;
}

.dpe-certificates__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.dpe-certificates__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 16px;
}

.dpe-certificates__subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 700px;
    line-height: 1.6;
}

.dpe-certificates__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.dpe-certificates__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.dpe-certificates__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.dpe-certificates__card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.dpe-certificates__card-text {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* DPE Products Section */
.dpe-products {
    padding: 80px 0;
    background: #ffffff;
}

.dpe-products__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.dpe-products__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 48px;
}

.dpe-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.dpe-products__card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.dpe-products__card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.dpe-products__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px;
}

/* DPE Community Section */
.dpe-community {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.dpe-community__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.dpe-community__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
}

.dpe-community__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 48px;
}

.dpe-community__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}

.dpe-community__link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dpe-community__link-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.dpe-community__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dpe-community__link:hover {
    color: #3b82f6;
}

/* Responsive Styles for DPE Pages */
@media (max-width: 768px) {
    .dpe-hero {
        padding: 100px 0 80px;
    }

    .dpe-experience,
    .dpe-courses,
    .dpe-certificates,
    .dpe-products,
    .dpe-community {
        padding: 60px 0;
    }

    .dpe-experience__grid,
    .dpe-courses__grid,
    .dpe-certificates__grid,
    .dpe-products__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dpe-experience__card,
    .dpe-course-card,
    .dpe-certificates__card,
    .dpe-products__card {
        padding: 32px 24px;
    }

    .dpe-community__links {
        flex-direction: column;
        gap: 32px;
    }

    .btn--large {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .dpe-hero {
        padding: 80px 0 60px;
    }

    .dpe-experience,
    .dpe-courses,
    .dpe-certificates,
    .dpe-products,
    .dpe-community {
        padding: 50px 0;
    }

    .dpe-experience__title,
    .dpe-courses__title,
    .dpe-certificates__title,
    .dpe-products__title,
    .dpe-community__title {
        margin-bottom: 32px;
    }
}

/* ===================================
   Newsletter Page Styles
   =================================== */

/* Newsletter Hero Section */
.newsletter-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-hero__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.newsletter-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.newsletter-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
    line-height: 1.6;
}

.newsletter-hero__note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-hero__link {
    color: #3b82f6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.newsletter-hero__link:hover {
    color: #60a5fa;
}

/* Newsletter Issues Section */
.newsletter-issues {
    padding: 80px 0;
    background: #ffffff;
}

.newsletter-issues__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.newsletter-issues__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 48px;
}

.newsletter-issues__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

/* Newsletter Card */
.newsletter-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.newsletter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.newsletter-card__header {
    margin-bottom: 20px;
}

.newsletter-card__date {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3b82f6;
}

.newsletter-card__content {
    margin: 0;
}

.newsletter-card__text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Newsletter Pagination */
.newsletter-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.newsletter-pagination__item {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #ffffff;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-pagination__item:hover {
    background: #f9fafb;
    border-color: #3b82f6;
    color: #3b82f6;
}

.newsletter-pagination__item--active {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

/* Newsletter Subscribe Section */
.newsletter-subscribe {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    text-align: center;
}

.newsletter-subscribe__container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.newsletter-subscribe__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.newsletter-subscribe__subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0 0 32px;
    line-height: 1.6;
}

.newsletter-subscribe__count {
    font-weight: 700;
    color: #3b82f6;
}

.newsletter-subscribe__link {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
}

.newsletter-subscribe__link:hover {
    color: #2563eb;
}

.newsletter-subscribe__form {
    margin-bottom: 24px;
}

.newsletter-subscribe__input-group {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-subscribe__input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-subscribe__input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-subscribe__button {
    padding: 14px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-subscribe__button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.newsletter-subscribe__notice {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.newsletter-subscribe__notice-link {
    color: #3b82f6;
    text-decoration: underline;
}

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

/* Responsive Styles for Newsletter Page */
@media (max-width: 768px) {
    .newsletter-hero {
        padding: 80px 0 60px;
    }

    .newsletter-issues,
    .newsletter-subscribe {
        padding: 60px 0;
    }

    .newsletter-issues__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsletter-card {
        padding: 24px;
    }

    .newsletter-subscribe__input-group {
        flex-direction: column;
    }

    .newsletter-subscribe__input,
    .newsletter-subscribe__button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-hero {
        padding: 60px 0 50px;
    }

    .newsletter-issues,
    .newsletter-subscribe {
        padding: 50px 0;
    }

    .newsletter-issues__title,
    .newsletter-subscribe__title {
        margin-bottom: 32px;
    }

    .newsletter-card {
        padding: 20px;
    }

    .newsletter-pagination__item {
        min-width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}

/* ===================================
   Develocity Page Styles
   =================================== */

/* Develocity Hero Section */
.dev-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dev-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dev-hero__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.dev-hero__badge {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dev-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 32px;
    line-height: 1.1;
}

.dev-hero__logo {
    margin: 32px 0;
}

.dev-hero__logo-text {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dev-hero__subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #ffffff;
    margin: 24px 0 16px;
}

.dev-hero__tagline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: #3b82f6;
    margin: 0 0 20px;
}

.dev-hero__description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
    line-height: 1.7;
}

.dev-hero__brands {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 24px 0 0;
}

/* Video Section */
.dev-video {
    padding: 60px 0;
    background: #f9fafb;
    text-align: center;
}

.dev-video__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.dev-video__text {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin: 0 0 24px;
    line-height: 1.6;
}

.dev-video__link {
    font-size: 1.125rem;
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 600;
}

.dev-video__link:hover {
    color: #2563eb;
}

/* Features Section */
.dev-features {
    padding: 80px 0;
    background: #ffffff;
}

.dev-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.dev-features__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 16px;
}

.dev-features__subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 700px;
    line-height: 1.6;
}

.dev-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.dev-feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.dev-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.dev-feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.dev-feature-card__description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 16px;
}

.dev-feature-card__link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
}

.dev-feature-card__link:hover {
    text-decoration: underline;
}

/* Impact Section */
.dev-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.dev-impact__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.dev-impact__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 48px;
}

.dev-impact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.dev-impact__card {
    text-align: center;
}

.dev-impact__stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.dev-impact__number {
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.dev-impact__unit {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #3b82f6;
    margin-left: 8px;
}

.dev-impact__label {
    font-size: 1.125rem;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.dev-impact__link {
    font-size: 0.9375rem;
    color: #6b7280;
    text-decoration: none;
}

.dev-impact__link:hover {
    text-decoration: underline;
}

/* Proactive Section */
.dev-proactive {
    padding: 80px 0;
    background: #ffffff;
}

.dev-proactive__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.dev-proactive__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
}

.dev-proactive__subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 48px 0 20px;
}

.dev-proactive__description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Build Systems Section */
.dev-systems {
    padding: 80px 0;
    background: #f9fafb;
}

.dev-systems__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.dev-systems__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 16px;
}

.dev-systems__subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 700px;
    line-height: 1.6;
}

.dev-systems__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.dev-systems__card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.dev-systems__card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.dev-systems__icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.dev-systems__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* CI Integration Section */
.dev-ci {
    padding: 80px 0;
    background: #ffffff;
}

.dev-ci__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.dev-ci__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
}

.dev-ci__description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 32px;
}

/* Deployment Section */
.dev-deployment {
    padding: 80px 0;
    background: #f9fafb;
}

.dev-deployment__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.dev-deployment__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
}

.dev-deployment__description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 32px;
}

/* Reporting Section */
.dev-reporting {
    padding: 80px 0;
    background: #ffffff;
}

.dev-reporting__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.dev-reporting__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 20px;
}

.dev-reporting__description {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    line-height: 1.7;
    margin: 0 0 32px;
}

.dev-reporting__subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 48px 0 16px;
}

.dev-reporting__text {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Testimonial */
.dev-testimonial {
    background: #f9fafb;
    border-left: 4px solid #3b82f6;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.dev-testimonial__quote {
    font-size: 1.125rem;
    color: #1a1a2e;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 16px;
}

.dev-testimonial__author {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    margin: 0;
}

/* Case Studies Section */
.dev-cases {
    padding: 80px 0;
    background: #f9fafb;
}

.dev-cases__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.dev-case-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 32px;
}

.dev-case-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px;
    line-height: 1.3;
}

.dev-case-card__quote {
    font-size: 1.125rem;
    color: #4b5563;
    font-style: italic;
    line-height: 1.7;
    margin: 24px 0 16px;
    padding-left: 24px;
    border-left: 3px solid #3b82f6;
}

.dev-case-card__author {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
}

/* Demo Section */
.dev-demo {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.dev-demo__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.dev-demo__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
}

.dev-demo__description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Version Section */
.dev-version {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

.dev-version__container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.dev-version__badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.dev-version__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}

.dev-version__date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 32px;
}

/* Responsive Styles for Develocity Page */
@media (max-width: 768px) {
    .dev-hero {
        padding: 80px 0 60px;
    }

    .dev-features,
    .dev-impact,
    .dev-proactive,
    .dev-systems,
    .dev-ci,
    .dev-deployment,
    .dev-reporting,
    .dev-cases,
    .dev-demo,
    .dev-version {
        padding: 60px 0;
    }

    .dev-features__grid,
    .dev-systems__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dev-impact__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dev-case-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .dev-hero {
        padding: 60px 0 50px;
    }

    .dev-features,
    .dev-impact,
    .dev-proactive,
    .dev-systems,
    .dev-ci,
    .dev-deployment,
    .dev-reporting,
    .dev-cases,
    .dev-demo,
    .dev-version {
        padding: 50px 0;
    }

    .dev-feature-card,
    .dev-systems__card {
        padding: 24px 20px;
    }

    .dev-testimonial {
        padding: 24px 20px;
    }

    .dev-case-card {
        padding: 24px 20px;
    }
}

/* ===================================
   Get Help Page Styles
   =================================== */

/* Help Hero Section */
.help-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.help-hero__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.help-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* Help Section */
.help-section {
    padding: 60px 0;
    background: #ffffff;
}

.help-section--alt {
    background: #f9fafb;
}

.help-section__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.help-section__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
}

.help-section__description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Help Partners Section */
.help-partners {
    padding: 80px 0;
    background: #ffffff;
}

.help-partners__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.help-partners__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 16px;
}

.help-partners__subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    margin: 0 0 32px;
}

.help-partners__list {
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.help-partners__list li {
    font-size: 1.0625rem;
    color: #4b5563;
    padding: 8px 0;
    position: relative;
}

.help-partners__list li::before {
    content: '✓';
    color: #3b82f6;
    font-weight: bold;
    margin-right: 12px;
}

/* Partner Cards */
.help-partner-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.help-partner-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.help-partner-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.help-partner-card__name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.help-partner-card__content {
    color: #4b5563;
}

.help-partner-card__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0 0 20px;
}

.help-partner-card__services {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.help-partner-card__services li {
    font-size: 1rem;
    line-height: 1.7;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.help-partner-card__services li::before {
    content: '•';
    color: #3b82f6;
    font-size: 1.5rem;
    position: absolute;
    left: 8px;
    top: 4px;
}

/* Help Links Section */
.help-links {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.help-links__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.help-links__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.help-links__item {
    display: inline-block;
    padding: 12px 32px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-links__item:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Responsive Styles for Get Help Page */
@media (max-width: 768px) {
    .help-hero {
        padding: 60px 0 50px;
    }

    .help-section,
    .help-partners {
        padding: 60px 0;
    }

    .help-partner-card {
        padding: 32px 24px;
    }

    .help-links__grid {
        flex-direction: column;
    }

    .help-links__item {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .help-hero {
        padding: 50px 0 40px;
    }

    .help-section,
    .help-partners {
        padding: 50px 0;
    }

    .help-partner-card {
        padding: 24px 20px;
    }

    .help-partner-card__name {
        font-size: 1.5rem;
    }

    .help-partners__list li {
        font-size: 1rem;
    }
}

