/* ===== OTTRA — components.css ===== */
/* Cards, forms, bracket motif, banners, cookie consent, blog components */

/* ===== Service Hero Proof Block ===== */
.service-hero__proof-block {
    height: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-stat__number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.proof-stat__label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: var(--ottra-text);
    line-height: 1.4;
}

.proof-quote {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
}

.proof-quote__text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 12px;
}

.proof-quote__attribution {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--ottra-pink);
    letter-spacing: 0.04em;
}

/* ===== Proof Provocation ===== */
.proof-block__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.proof-provocation {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.5;
    padding-left: 20px;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, var(--ottra-pink), var(--gitlab-orange)) 1;
    margin-bottom: 28px;
}

.proof-provocation--closer {
    border-left: none;
    border-image: none;
    padding-left: 0;
    font-weight: 700;
    margin-bottom: 28px;
}

.proof-failpoints {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.proof-failpoints li {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--ottra-text);
    line-height: 1.6;
    padding: 6px 0 6px 20px;
    position: relative;
}

.proof-failpoints li::before {
    content: '\2715';
    position: absolute;
    left: 0;
    color: var(--ottra-pink);
    font-weight: 700;
}

/* ===== Story Callout Card ===== */
.story-section__callout {
    background: #FFFFFF;
    border-top: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange)) 1;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 48px;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.callout-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--ottra-pink);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}

.callout-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.callout-stat__number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.callout-stat__descriptor {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ottra-off-black);
}

.callout-stat__detail {
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.6;
    margin-top: 4px;
}

.callout-divider {
    margin: 8px 0;
    height: 1px;
    background: linear-gradient(135deg,
        rgba(221,65,132,0.2),
        rgba(252,109,38,0.2));
}

/* ===== Outcomes Grid & Cards ===== */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.outcome-card {
    background: #FFFFFF;
    border-top: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange)) 1;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.outcome-card__circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.outcome-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ottra-off-black);
    line-height: 1.3;
}

.outcome-card__detail {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.7;
    margin: 0;
}

/* ===== How It Works Steps ===== */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Vertical connecting line running through all steps */
.steps-list::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 64px;
    bottom: 32px;
    width: 2px;
    background: linear-gradient(
        180deg,
        var(--ottra-pink),
        var(--gitlab-orange)
    );
    z-index: 0;
}

.step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 48px;
    position: relative;
}

.step:last-child {
    padding-bottom: 0;
}

.step__circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #FFFFFF;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step__content {
    padding-top: 12px;
}

.step__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 10px;
}

.step__detail {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #A4A8AB;
    line-height: 1.75;
    margin: 0;
}

/* ===== Reusable Contact CTA ===== */
.btn-contact {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(221, 65, 132, 0.35);
}

/* ===== Blog Hero ===== */
.blog-hero {
    padding: 150px 0 80px;
    background: var(--ottra-off-black);
    color: white;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--ottra-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-description {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Featured Posts ===== */
.featured-posts {
    padding: 80px 0;
    background: var(--light-grey);
}

.featured-posts h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--ottra-off-black);
    text-align: center;
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 600px;
}

.featured-post-card {
    background: white;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.featured-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange));
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-post-card .post-image {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.featured-post-card .post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-post-card .post-content {
    padding: 30px;
}

/* ===== All Posts Section ===== */
.all-posts {
    padding: 80px 0;
    background: white;
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.posts-header h2 {
    font-size: 2.5rem;
    color: var(--ottra-off-black);
}

.blog-filters {
    display: flex;
    gap: 20px;
    align-items: center;
}

.blog-filters select,
.blog-filters input {
    padding: 10px 15px;
    border: 2px solid var(--light-grey);
    border-radius: 25px;
    font-size: 1rem;
    background: white;
}

.blog-filters select:focus,
.blog-filters input:focus {
    outline: none;
    border-color: var(--ottra-pink);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* ===== Post Card ===== */
.post-card {
    background: white;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange));
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-card .post-image {
    height: 180px;
    overflow: hidden;
}

.post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-card .post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--ottra-text);
}

.post-category {
    background: var(--ottra-pink);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-card h3 {
    margin-bottom: 10px;
}

.post-card h3 a {
    color: var(--ottra-off-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card h3 a:hover {
    color: var(--ottra-pink);
}

.post-excerpt {
    color: var(--ottra-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--light-grey);
    padding-top: 15px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--ottra-text);
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.read-more {
    color: var(--ottra-pink);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.pagination-btn {
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.pagination-btn:hover {
    transform: translateY(-2px);
}

.pagination-info {
    color: var(--ottra-text);
    font-weight: 500;
}

/* ===== Blog Post Header ===== */
.blog-post-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--ottra-text);
}

.breadcrumb a {
    color: var(--ottra-pink);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 8px;
}

.blog-post-header .post-meta {
    justify-content: center;
    margin-bottom: 30px;
}

.blog-post-header h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--ottra-off-black);
}

.blog-post-header .post-excerpt {
    font-size: 1.2rem;
    color: var(--ottra-text);
    margin-bottom: 40px;
}

.post-author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.post-author-info .author-avatar {
    width: 50px;
    height: 50px;
}

.author-details strong {
    display: block;
    color: var(--ottra-off-black);
    font-size: 1.1rem;
}

.author-details p {
    color: var(--ottra-text);
    font-size: 0.9rem;
    margin: 0;
}

.post-featured-image {
    max-width: 1000px;
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

/* ===== Blog Post Content ===== */
.blog-post-content {
    padding: 80px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--ottra-off-black);
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin: 40px 0 20px;
    color: var(--ottra-off-black);
}

.post-content p {
    margin-bottom: 20px;
}

.post-content a {
    color: var(--ottra-pink);
    text-decoration: underline;
}

.post-content a:hover {
    text-decoration: none;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.post-content thead {
    background: var(--ottra-off-black);
    color: white;
}

.post-content th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.post-content td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--light-grey);
    vertical-align: top;
}

.post-content tbody tr:hover {
    background: rgba(221, 65, 132, 0.04);
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.post-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.post-content blockquote {
    border-left: 4px solid var(--ottra-pink);
    padding: 16px 24px;
    margin: 30px 0;
    background: var(--light-grey);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
}

.post-content code {
    background: var(--light-grey);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9em;
}

.post-content pre {
    background: var(--ottra-off-black);
    color: #e0e0e0;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 30px 0;
}

.post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.post-tags {
    margin: 40px 0;
    padding-top: 30px;
    border-top: 1px solid var(--light-grey);
}

.post-tags h4 {
    margin-bottom: 15px;
    color: var(--ottra-off-black);
}

.tag {
    display: inline-block;
    background: var(--light-grey);
    color: var(--ottra-off-black);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin: 5px 10px 5px 0;
}

.post-share {
    margin: 40px 0;
    padding-top: 30px;
    border-top: 1px solid var(--light-grey);
}

.post-share h4 {
    margin-bottom: 15px;
    color: var(--ottra-off-black);
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1DA1F2;
    color: white;
}

.share-btn.linkedin {
    background: #0077B5;
    color: white;
}

.share-btn.email {
    background: var(--ottra-pink);
    color: white;
}

/* ===== Blog Sidebar ===== */
.blog-sidebar {
    background: var(--light-grey);
    border-radius: 20px;
    padding: 40px;
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--ottra-off-black);
}

.recent-posts,
.categories {
    list-style: none;
}

.recent-posts li,
.categories li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.recent-posts li:last-child,
.categories li:last-child {
    border-bottom: none;
}

.recent-posts a,
.categories a {
    text-decoration: none;
    color: var(--ottra-off-black);
    transition: color 0.3s ease;
}

.recent-posts a:hover,
.categories a:hover {
    color: var(--ottra-pink);
}

.recent-posts h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.recent-posts .post-date {
    font-size: 0.85rem;
    color: var(--ottra-text);
}

/* ===== Related Posts ===== */
.related-posts {
    padding: 80px 0;
    background: var(--light-grey);
}

.related-posts h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--ottra-off-black);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.related-post-card {
    background: white;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.related-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange));
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.related-post-card .post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-card .post-content {
    padding: 20px;
}

.related-post-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* ===== General Content ===== */
.main-content {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-wrapper h2,
.content-wrapper h3 {
    margin: 40px 0 20px;
    color: var(--ottra-off-black);
}

.content-wrapper p {
    margin-bottom: 20px;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--ottra-off-black);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--ottra-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Feature Cards ===== */
.features {
    padding: 80px 0;
    background: var(--light-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    border-radius: 0 0 20px 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange));
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--ottra-off-black);
}

.feature-card p {
    color: var(--ottra-text);
    line-height: 1.6;
}

/* ===== Contact Hero ===== */
.contact-hero {
    padding: 160px 0 80px;
    background: var(--ottra-off-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 65, 132, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.contact-hero__eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ottra-pink);
    margin-bottom: 16px;
    position: relative;
}

.contact-hero__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative;
}

.contact-hero__sub {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    color: var(--ottra-text);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

/* ===== Contact Form ===== */
.contact-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.contact-form {
    max-width: 680px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 0 0 20px 20px;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange)) 1;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ottra-off-black);
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--ottra-off-black);
    background: var(--light-grey);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--ottra-pink);
    background: #FFFFFF;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A4A8AB' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(221, 65, 132, 0.3);
}

.form-reassurance {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #4A5568;
    text-align: center;
    margin-bottom: 20px;
}

.contact-book-call {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #4A5568;
    text-align: center;
    margin-top: 32px;
}

.contact-book-call a {
    color: var(--ottra-pink);
    font-weight: 600;
    text-decoration: none;
}

.contact-book-call a:hover {
    text-decoration: underline;
}

.contact-quote {
    max-width: 560px;
    margin: 48px auto 0;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-quote__text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-style: italic;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-quote__attribution {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: var(--ottra-pink);
    font-weight: 600;
}

.contact-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.contact-badges img {
    height: 60px;
    opacity: 0.8;
}

/* ===== Contact Stats Section ===== */
.contact-stats-section {
    background-color: var(--light-grey);
    padding: 60px 0;
}

.contact-stats__row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.contact-stat__number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.contact-stat__label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
}

/* ===== Contact Social Proof Section ===== */
.contact-proof-section {
    background-color: var(--ottra-off-black);
    padding: 80px 0;
}

.contact-proof__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-proof-card {
    background: rgba(255, 255, 255, 0.04);
    border-top: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange)) 1;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-proof-card__text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #FFFFFF;
    font-style: italic;
    flex: 1;
}

.contact-proof-card__attribution {
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    color: var(--ottra-pink);
    letter-spacing: 0.04em;
    margin: 0;
}

/* ===== Contact Trust Badges Section ===== */
.contact-trust-section {
    background-color: var(--ottra-off-black);
    padding: 60px 0;
}

.contact-trust__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-trust__row img {
    height: 80px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.contact-trust__row img:hover {
    opacity: 1;
}

/* ===== Thanks Page ===== */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
    background: var(--ottra-off-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thanks-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 65, 132, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.thanks-section__inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.thanks-section__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--ottra-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thanks-section__message {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    color: var(--ottra-text);
    line-height: 1.7;
}

/* ===== Form Error ===== */
.form-error {
    background: #ff6b6b;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 0.9rem;
    display: none;
}

/* ===== Animation Classes ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Upgrade Timeline ===== */
.upgrade-timeline {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--ottra-pink);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    width: 100%;
    font-family: 'Space Mono', monospace;
    color: var(--white);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 1.1rem;
}

.timeline-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.timeline-text {
    color: var(--white);
}

.version-highlight {
    color: var(--gitlab-orange);
    font-weight: 600;
}

/* ===== ROI Section ===== */
.roi {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
}

.roi-header {
    text-align: center;
    margin-bottom: 80px;
}

.roi-header h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--ottra-off-black);
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.roi-stat {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.roi-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.roi-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 15px;
    display: block;
}

.roi-label {
    font-size: 1.2rem;
    color: var(--ottra-off-black);
    font-weight: 600;
    margin-bottom: 10px;
}

.roi-description {
    color: var(--ottra-text);
    font-size: 0.95rem;
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 120px 0;
    background: var(--light-grey);
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-stat {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange));
}

.benefit-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 15px;
    display: block;
}

.benefit-label {
    font-size: 1.2rem;
    color: var(--ottra-off-black);
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-description {
    color: var(--ottra-text);
    font-size: 0.95rem;
}

/* ===== Challenge Section ===== */
.challenge {
    padding: 120px 0;
    background: var(--light-grey);
}

.challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.challenge-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange));
    border-radius: 20px 20px 0 0;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.challenge-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--ottra-off-black);
}

.challenge-list {
    list-style: none;
}

.challenge-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    color: var(--ottra-text);
    font-size: 1.1rem;
}

.challenge-list li::before {
    content: '\26A0';
    position: absolute;
    left: 0;
    color: var(--gitlab-orange);
}

/* ===== Training Modules ===== */
.training-modules {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--ottra-pink);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    width: 100%;
    font-family: 'Space Mono', monospace;
    color: var(--white);
}

.module-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 1.1rem;
}

.module-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.module-text {
    color: var(--white);
}

.skill-highlight {
    color: var(--gitlab-orange);
    font-weight: 600;
}

/* ===== Program Cards ===== */
.program-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    margin-bottom: 25px;
}

.program-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--ottra-text);
    font-size: 1rem;
}

.program-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gitlab-orange);
    font-weight: bold;
}

.program-duration {
    background: var(--light-grey);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--ottra-off-black);
    margin-top: 20px;
}

/* ===== Hero Visual Elements ===== */
.hero-visual-box {
    background: rgba(28, 37, 44, 0.8);
    border: 2px solid var(--ottra-pink);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    color: var(--white);
}

/* ===== Process/Pipeline Visual ===== */
.process-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 1.1rem;
    color: white;
}

.process-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 12px rgba(221, 65, 132, 0.3);
    flex-shrink: 0;
}

.process-icon .icon-inner {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.process-text {
    color: white;
    font-size: 1.4rem;
    line-height: 1.3;
}

.process-text .highlight {
    color: var(--gitlab-orange);
    font-weight: 600;
}

/* ===== Credentials Trust Section ===== */
.credentials-trust {
    padding: 120px 0;
    background: var(--ottra-off-black);
    color: white;
}

.credentials-trust .credentials-header {
    text-align: center;
    margin-bottom: 80px;
}

.credentials-trust .credentials-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.credentials-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.credential-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 20px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.credential-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange));
}

.credential-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.credential-item .credential-badge-img {
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 100%;
    object-fit: contain;
}

.credential-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.credential-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.section-cta-btn {
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.section-cta-btn:hover {
    transform: translateY(-2px);
}

/* ===== Service-Specific Visual Containers ===== */
.pipeline-visual,
.review-process,
.training-visual,
.migration-visual {
    background: rgba(28, 37, 44, 0.8);
    border: 2px solid var(--ottra-pink);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    color: var(--white);
}

/* ===== Cookie Consent ===== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--ottra-off-black) 0%, #2a3a47 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Manrope', sans-serif;
    border-top: 3px solid var(--gitlab-orange);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-popup-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-popup-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.cookie-popup-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.cookie-popup-link {
    color: var(--gitlab-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-popup-link:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.cookie-popup-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--gitlab-orange), #ff6b35);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(252, 109, 38, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ===== Bracket Frame Motif ===== */
.bracket-frame {
    position: relative;
    padding: 20px;
}

.bracket-frame::before,
.bracket-frame::after {
    font-size: 4rem;
    font-weight: 300;
    font-family: 'Space Mono', monospace;
    line-height: 1;
    position: absolute;
}

.bracket-frame::before {
    content: '[';
    color: var(--ottra-pink);
    top: 0;
    left: 0;
}

.bracket-frame::after {
    content: ']';
    color: var(--gitlab-orange);
    bottom: 0;
    right: 0;
}

/* ===== FAQ Accordion ===== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    text-align: left;
}

.faq-question__text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ottra-off-black);
    line-height: 1.4;
}

.faq-question__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question__icon::after {
    content: '+';
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.faq-item.is-open .faq-question__icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
}

.faq-answer__inner {
    padding-bottom: 24px;
}

.faq-answer__inner p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
    color: #4A5568;
    line-height: 1.8;
    margin: 0;
}

/* ===== Course List ===== */
.course-list {
    max-width: 860px;
    margin: 0 auto;
}

.course-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(
        90deg,
        rgba(221, 65, 132, 0.25),
        rgba(252, 109, 38, 0.25)
    ) 1;
    transition: all 0.2s ease;
}

.course-row:first-child {
    border-top: 1px solid transparent;
    border-image: linear-gradient(
        90deg,
        rgba(221, 65, 132, 0.25),
        rgba(252, 109, 38, 0.25)
    ) 1;
}

.course-row:hover {
    background: rgba(221, 65, 132, 0.03);
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 8px;
}

.course-row__name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ottra-off-black);
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.course-row__description {
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
    color: #4A5568;
    line-height: 1.7;
    margin: 0;
}

/* Optional tag — use for duration or format indicators */
.course-tag {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ottra-pink);
    background: rgba(221, 65, 132, 0.08);
    border: 1px solid rgba(221, 65, 132, 0.2);
    border-radius: 20px;
    padding: 3px 10px;
    letter-spacing: 0.02em;
    width: fit-content;
}

.course-row__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.course-langs {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    line-height: 1;
}

.course-langs__label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #9CA3AF;
    letter-spacing: 0.02em;
    margin-right: 2px;
}

/* ===== Homepage Hero ===== */
.homepage-hero {
    background-color: var(--ottra-off-black);
    padding: 160px 0 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.homepage-hero__content {
    max-width: 800px;
}

.homepage-hero__headline {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 24px;
}

.homepage-hero__subhead {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    color: var(--ottra-text);
    line-height: 1.6;
    margin-bottom: 32px;
}

.homepage-hero__badges {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.homepage-hero__badges img {
    height: 70px;
    width: auto;
    opacity: 0.85;
}

.homepage-hero__reassurance {
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    color: rgba(164, 168, 171, 0.7);
    margin-top: 16px;
}

/* ===== Proof Bar ===== */
.proof-bar {
    background-color: var(--ottra-off-black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
}

.proof-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.proof-bar__item {
    text-align: center;
}

.proof-bar__item--badge {
    display: flex;
    align-items: center;
}

.proof-bar__number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
}

.proof-bar__label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: var(--ottra-text);
    display: block;
    margin-top: 4px;
}

.proof-bar__badge {
    height: 50px;
    width: auto;
    opacity: 0.85;
}

/* ===== Why OTTRA ===== */
.why-ottra {
    background-color: var(--light-grey);
    padding: 100px 0;
}

.why-ottra__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.why-ottra__content {
    max-width: 640px;
}

.why-ottra__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--ottra-off-black);
    line-height: 1.2;
    margin-bottom: 24px;
}

.why-ottra__content p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.why-ottra__link {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ottra-pink);
    display: inline-block;
    margin-top: 8px;
    transition: gap 0.3s ease;
}

.why-ottra__link:hover {
    color: var(--gitlab-orange);
}

.why-ottra__stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
}

.why-ottra__stat {
    background: #FFFFFF;
    border-radius: 0 0 16px 16px;
    padding: 28px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.why-ottra__stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange));
}

.why-ottra__stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.why-ottra__stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 4px;
}

/* ===== Homepage Services ===== */
.homepage-services {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.homepage-services__header {
    text-align: center;
    margin-bottom: 60px;
}

.homepage-services__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--ottra-off-black);
    margin-bottom: 12px;
}

.homepage-services__sub {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    color: var(--ottra-text);
}

.homepage-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Service card child elements for homepage */
.service-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--ottra-off-black);
    margin-bottom: 8px;
}

.service-card__hook {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ottra-pink);
    margin-bottom: 12px;
}

.service-card__detail {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ottra-pink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-card__link:hover {
    gap: 10px;
    color: var(--gitlab-orange);
}

/* ===== Homepage Quote ===== */
.homepage-quote {
    background-color: var(--light-grey);
    padding: 80px 0;
}

.homepage-quote__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.homepage-quote__text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--ottra-off-black);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
}

.homepage-quote__attribution {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--ottra-pink);
    font-weight: 600;
}

/* ===== About Page ===== */

.about-hero .service-hero__content {
    max-width: 800px;
}

/* Story Section */
.about-story {
    background: var(--light-grey);
    padding: 100px 0;
}

.about-story__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--ottra-off-black);
    margin-bottom: 32px;
}

.about-story__body p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 720px;
}

/* Team Section */
.about-team {
    background: #FFFFFF;
    padding: 100px 0;
}

.about-team__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--ottra-off-black);
    margin-bottom: 20px;
}

.about-team__intro {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 48px;
}

/* Stats Row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.about-stat {
    background: var(--light-grey);
    border-radius: 0 0 16px 16px;
    padding: 28px 24px;
    position: relative;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange));
}

.about-stat__number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.about-stat__label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 4px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: var(--light-grey);
    border-radius: 0 0 20px 20px;
    padding: 32px 24px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ottra-pink), var(--gitlab-orange));
    border-radius: 4px 4px 0 0;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.team-card__photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background: #e0e0e0;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ottra-off-black);
    margin-bottom: 4px;
}

.team-card__title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ottra-pink);
    margin-bottom: 12px;
}

.team-card__bio {
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    color: #666;
    line-height: 1.65;
}

/* Values Section */
.about-values {
    background: var(--light-grey);
    padding: 100px 0;
}

.about-values__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--ottra-off-black);
    margin-bottom: 48px;
    text-align: center;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 0;
    min-width: 160px;
    max-width: 220px;
    text-align: center;
    padding: 28px 20px;
}

.value-item__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--ottra-off-black);
    margin-bottom: 10px;
}

.value-item__title .value-initial {
    background: linear-gradient(135deg, var(--ottra-pink), var(--gitlab-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
}

.value-item__description {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Team Card Languages & Expertise */
.team-card__languages {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: var(--ottra-pink);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card__expertise {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

/* Terms Page */
.terms-section {
    background: #FFFFFF;
    padding: 100px 0 80px;
}

.terms-section__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--ottra-off-black);
    margin-bottom: 24px;
}

.terms-section__meta {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
}

.terms-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--ottra-off-black);
    margin-top: 40px;
    margin-bottom: 16px;
}

.terms-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--ottra-off-black);
    margin-top: 24px;
    margin-bottom: 12px;
}

.terms-section p {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 800px;
}

.terms-section ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
    max-width: 800px;
}

.terms-section li {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 8px;
}

.terms-section a {
    color: var(--ottra-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: var(--gitlab-orange);
}

/* Accreditations Section */
.about-accreditations {
    background: var(--ottra-off-black);
    padding: 100px 0;
}

.about-accreditations__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #FFFFFF;
    margin-bottom: 16px;
}

.about-accreditations__intro {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    color: var(--ottra-text);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 48px;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.accreditation-item {
    text-align: center;
}

.accreditation-badge {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
    opacity: 0.9;
}

.accreditation-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: var(--ottra-text);
    line-height: 1.5;
}

.accreditation-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ottra-pink);
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.accreditation-link:hover {
    color: var(--gitlab-orange);
}

