/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Top Bar ===== */
.top-bar {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.top-bar-item {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-bar-item:hover {
    color: #139ad8;
}

/* ===== Navbar ===== */
.navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
}

.logo svg {
    display: block;
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-img {
    max-height: 150px;
    max-width: 100%;
    width: auto;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    color: #333;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #139ad8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #139ad8;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero Slider ===== */
.hero {
    position: relative;
    min-height: 540px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #139ad8 100%);
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 18% 30%, rgba(54, 181, 216, 0.18), transparent 45%),
                      radial-gradient(circle at 82% 75%, rgba(245, 160, 160, 0.12), transparent 45%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.25;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.94);
}

.hero-cta-row {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.hero-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #36b5d8 0%, #0f3460 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(54, 181, 216, 0.4);
}

.hero-cta-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(54, 181, 216, 0.6);
}

@media (max-width: 768px) {
    .hero {
        min-height: 460px;
        padding: 60px 20px;
    }
    .hero-content h1 {
        font-size: 1.9rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #139ad8;
    color: #fff;
}

.btn-primary:hover {
    background: #0d7bb5;
    transform: translateY(-2px);
}

.btn-pink {
    background: #f5a0a0;
    color: #333;
}

.btn-pink:hover {
    background: #e88e8e;
}

.btn-outline-full {
    display: block;
    padding: 14px;
    border: 2px solid #139ad8;
    color: #139ad8;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-full:hover {
    background: #139ad8;
    color: #fff;
}

/* ===== Section Header Bar ===== */
.section-header-bar {
    background: linear-gradient(135deg, #0f3460 0%, #139ad8 100%);
    padding: 18px 0 22px;
    position: relative;
}

.section-header-bar h2 {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #fff;
}

.header-arrow {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #139ad8;
    position: absolute;
    bottom: -12px;
    left: 40px;
    /* Arrow color matches the right end of the gradient */
}

/* ===== Partnerships ===== */
.partnerships {
    padding: 60px 0;
}

.partnerships-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
}

.partner-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-divider {
    width: 2px;
    height: 50px;
    background: #ccc;
}

.partner-level {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.partner-type {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.xray-green {
    color: #4caf50;
}

/* ===== Social Feed ===== */
.social-feed {
    padding: 60px 0;
    background: #f9f9f9;
}

.social-feed-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-feed-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
    max-width: 540px;
}

.social-feed-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.social-feed-card h3 .fa-facebook {
    color: #1877f2;
    margin-right: 8px;
}

.social-feed-card h3 .fa-linkedin {
    color: #0a66c2;
    margin-right: 8px;
}

.fb-page-wrapper {
    min-height: 200px;
}

.social-feed-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-linkedin {
    background: #0a66c2;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-linkedin:hover {
    background: #004182;
    color: #fff;
}

/* ===== Services ===== */
.services {
    padding: 0 0 60px;
}

.services-hero {
    position: relative;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.85) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(19, 154, 216, 0.5) 100%);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.services-hero-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.services-hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 700px;
}

.section-subtitle {
    text-align: center;
    color: #139ad8;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

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

.service-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    border-top: 4px solid #139ad8;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(19, 154, 216, 0.2);
}

.service-img {
    width: 100%;
    height: 220px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 52, 96, 0.3) 100%);
}

.consulting-img {
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=600&q=80');
}

.engineering-img {
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=600&q=80');
    background-color: #1a2744;
}

.gaming-img {
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=600&q=80');
}

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
    padding: 0 20px;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    padding: 0 20px;
}

.read-more {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #139ad8, #0f3460);
    padding: 8px 24px;
    border-radius: 20px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(19, 154, 216, 0.4);
    color: #fff;
}

/* Tech Secrets */
.tech-secrets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

.tech-secrets-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.tech-secrets-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.tech-secrets-img {
    height: 300px;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=600&q=80') center/cover no-repeat;
    border-radius: 8px;
}

/* ===== Team ===== */
.team {
    padding: 60px 0;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-card {
    border: none;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    min-width: 260px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.team-card h4 {
    font-size: 1rem;
    color: #fff;
    padding: 20px 30px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    margin-bottom: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #36b5d8 0%, #139ad8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(54, 181, 216, 0.3);
    position: relative;
    z-index: 1;
}

.team-avatar i {
    font-size: 3rem;
    color: #fff;
}

.team-name {
    font-size: 1.1rem;
    color: #1a1a2e;
    font-weight: 700;
    padding-bottom: 25px;
}

.team-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
    display: block;
}

.team-card-link:hover {
    transform: translateY(-8px);
}

.team-card-link:hover .team-card {
    box-shadow: 0 12px 35px rgba(19, 154, 216, 0.25);
}

/* ===== Team Detail ===== */
.team-detail {
    padding: 60px 0;
}

.team-detail h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
}

.team-detail p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 800px;
}

/* ===== Mission / About ===== */
.mission {
    padding: 60px 0;
}

.mission-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.mission-block.reverse {
    direction: rtl;
}

.mission-block.reverse > * {
    direction: ltr;
}

.mission-img {
    height: 380px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.mission-img-1 {
    background-image: url('https://images.unsplash.com/photo-1531538606174-e1ed92d7ec9e?w=600&q=80');
}

.mission-img-2 {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&q=80');
}

.mission-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #333;
}

.mission-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.learn-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #139ad8;
}

/* ===== Products ===== */
.products {
    padding-bottom: 60px;
}

.products-hero {
    position: relative;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.products-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.products-hero-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
}

.product-item {
    margin-bottom: 50px;
    max-width: 800px;
}

.product-item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.product-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.product-item .btn {
    margin-right: 20px;
    margin-bottom: 10px;
}

.product-item .learn-more {
    display: block;
    margin-top: 10px;
    text-align: right;
}

/* ===== Stay Connected ===== */
.stay-connected-section {
    padding: 50px 0;
}

.stay-connected-blog {
    background: #f9f9f9;
}

.stay-connected-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0a66c2;
}

.stay-connected-heading i {
    margin-right: 10px;
    color: #0a66c2;
}

.stay-connected-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.stay-connected-two-col .social-feed-card {
    max-width: 100%;
}

/* ===== Blog & Resources ===== */
.blog, .resources {
    padding: 60px 0;
}

.section-intro {
    text-align: center;
    font-size: 1rem;
    color: #666;
}

/* ===== Contact ===== */
.contact {
    padding: 60px 0;
    background: #f0f0f0;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #139ad8;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 15px;
}

.contact-form-wrapper > p {
    text-align: center;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 0.9rem;
}

.input-icon input {
    width: 100%;
    padding: 12px 12px 12px 38px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.input-icon input:focus {
    outline: none;
    border-color: #139ad8;
}

.form-group.full-width {
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
}

textarea:focus {
    outline: none;
    border-color: #139ad8;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: #555;
    font-weight: 400 !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #139ad8;
}

.checkbox-label a {
    color: #139ad8;
    text-decoration: underline;
}

.btn-submit {
    display: block;
    width: 250px;
    margin: 20px auto 0;
    padding: 14px;
    font-size: 1rem;
}

/* ===== HiHello Contact Card ===== */
.contact-card-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-card-wrapper h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #139ad8;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 15px;
}

.contact-card-wrapper > p {
    text-align: center;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-hihello {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.hihello-btn {
    display: inline-block;
    background: linear-gradient(135deg, #139ad8, #0f3460);
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(19, 154, 216, 0.3);
}

.hihello-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 154, 216, 0.4);
}

.hihello-btn i {
    margin-right: 8px;
}

.hihello-hint {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #888;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, transform 0.2s;
}

.contact-detail-item:hover {
    background: #eef6fc;
    transform: translateY(-1px);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #139ad8, #0f3460);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    color: #fff;
    font-size: 1rem;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
}

.contact-detail-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-detail-value {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

@media (max-width: 600px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .contact-card-wrapper {
        padding: 30px 20px;
    }

    .hihello-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 50px 0 0;
    color: #ccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand svg {
    display: block;
    margin-bottom: 10px;
}

.footer-brand h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand hr {
    border: none;
    border-top: 2px solid #36b5d8;
    width: 60%;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #aab;
    font-style: italic;
    line-height: 1.6;
}

.footer-col h5 {
    color: #36b5d8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-col ul li {
    font-size: 0.9rem;
    color: #aab;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li i {
    color: #36b5d8;
    font-size: 0.8rem;
    width: 16px;
}

.footer-col ul li a {
    color: #aab;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #36b5d8;
}

.footer-col hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    font-size: 0.85rem;
    color: #889;
}

.footer-legal a {
    color: #889;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #36b5d8;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #889;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* ===== Service Detail Pages ===== */
.service-detail {
    padding: 0 0 60px;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.service-detail-img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.service-detail-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.more-services {
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.more-services h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
}

.more-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== Support Page ===== */
.support-page {
    padding: 60px 0;
}

.support-intro {
    text-align: center;
    margin-bottom: 50px;
}

.support-intro h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.support-intro p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.support-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #36b5d8;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.05) 0%, rgba(54, 181, 216, 0.08) 100%);
    z-index: 0;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(54, 181, 216, 0.15);
}

.support-card-icon {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #36b5d8 0%, #0f3460 100%);
    position: relative;
    z-index: 1;
}

.support-card-icon i {
    font-size: 1.6rem;
}

.support-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.support-card > p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.support-details {
    list-style: none;
    margin-bottom: 25px;
}

.support-details li {
    padding: 6px 0;
    color: #555;
}

.support-details li i {
    color: #36b5d8;
    margin-right: 10px;
    width: 16px;
}

.support-btn {
    display: inline-block;
    margin-bottom: 15px;
}

.support-btn i {
    margin-right: 8px;
}

.support-alt {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 15px;
}

.support-alt a {
    color: #36b5d8;
}

.support-link {
    display: block;
    color: #36b5d8;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 5px;
}

.support-link:hover {
    text-decoration: underline;
}

.support-link i {
    margin-right: 6px;
}

.support-contact {
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    padding: 40px;
    color: #fff;
}

.support-contact h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.support-contact > p {
    color: #ccc;
    margin-bottom: 10px;
}

.support-contact a {
    color: #36b5d8;
}

.support-contact .support-link {
    color: #36b5d8;
}

/* ===== Gaming Featured ===== */
.gaming-featured {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    color: #fff;
    text-align: center;
}

.gaming-featured h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.gaming-featured h3 i {
    color: #36b5d8;
    margin-right: 10px;
}

.gaming-featured p {
    color: #ccc;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.gaming-featured .btn-primary {
    display: inline-block;
    background: #36b5d8;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gaming-featured .btn-primary:hover {
    background: #2a9ab8;
    transform: translateY(-2px);
}

.gaming-featured .btn-primary i {
    margin-right: 8px;
}

/* ===== Blog ===== */
.blog {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    max-width: 450px;
}

.blog-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
}

.blog-img {
    margin-bottom: 15px;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
}

.blog-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #333;
    border-radius: 25px;
    color: #333;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #139ad8;
    border-color: #139ad8;
    color: #fff;
}

/* ===== Blog Post ===== */
.blog-post {
    padding: 0 0 60px;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-post-meta .blog-date {
    margin-bottom: 15px;
}

.blog-post-meta p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-post-body {
    max-width: 900px;
}

.blog-post-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #333;
    margin: 30px 0 15px;
}

.blog-post-body h3:first-child {
    margin-top: 0;
}

.blog-post-body p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-signature {
    margin-top: 30px;
}

.blog-tagline {
    font-size: 0.95rem;
    color: #666;
}

/* ===== Legal Content (EULA / AUP) ===== */
.legal-content {
    padding: 40px 0 60px;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
}

.legal-document h3 {
    font-size: 1.05rem;
    color: #333;
    margin: 25px 0 10px;
}

.legal-document p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-document a {
    color: #139ad8;
    text-decoration: underline;
}

.legal-document ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-document ul li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 5px;
}

/* ===== Contact Hero ===== */
.contact-hero {
    position: relative;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.contact-hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== App Risk Assessment Page ===== */
.assessment-img {
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=600&q=80');
    background-color: #1a2744;
}

.assessment-why {
    margin-bottom: 50px;
}

.assessment-why h3,
.assessment-approach h3,
.assessment-deliverables h3,
.assessment-engagement h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
}

.assessment-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.assessment-why-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid #139ad8;
}

.assessment-why-card.risk {
    border-left-color: #e74c3c;
}

.assessment-why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.assessment-why-card h4 i {
    margin-right: 8px;
    color: #139ad8;
}

.assessment-why-card.risk h4 i {
    color: #e74c3c;
}

.assessment-why-card ul {
    list-style: none;
    padding: 0;
}

.assessment-why-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.assessment-why-card ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    position: absolute;
    left: 0;
    top: 5px;
    color: #139ad8;
}

.assessment-why-card.risk ul li::before {
    color: #e74c3c;
}

.assessment-approach {
    margin-bottom: 50px;
}

.assessment-approach-intro,
.assessment-deliverables-intro {
    color: #555;
    font-size: 1rem;
    margin-bottom: 25px;
}

.assessment-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.assessment-approach-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #139ad8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.assessment-approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(19, 154, 216, 0.15);
}

.assessment-approach-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #139ad8, #0f3460);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.assessment-approach-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.assessment-approach-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.optional-badge {
    display: inline-block;
    background: #f0f4ff;
    color: #139ad8;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.assessment-approach-card ul {
    list-style: none;
    padding: 0;
}

.assessment-approach-card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.assessment-approach-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    position: absolute;
    left: 0;
    top: 5px;
    color: #139ad8;
}

.assessment-deliverables {
    margin-bottom: 50px;
}

.assessment-deliverables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.assessment-deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.assessment-deliverable-item > i {
    font-size: 1.3rem;
    color: #139ad8;
    margin-top: 2px;
    flex-shrink: 0;
}

.assessment-deliverable-item strong {
    display: block;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.assessment-deliverable-item ul {
    list-style: none;
    padding: 0;
    margin-top: 4px;
}

.assessment-deliverable-item ul li {
    font-size: 0.9rem;
    color: #555;
    padding-left: 14px;
    position: relative;
    margin-bottom: 3px;
}

.assessment-deliverable-item ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #139ad8;
}

.assessment-rating-badges {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.rating-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-badge.low {
    background: #d4edda;
    color: #155724;
}

.rating-badge.medium {
    background: #fff3cd;
    color: #856404;
}

.rating-badge.high {
    background: #f8d7da;
    color: #721c24;
}

.assessment-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.assessment-outcomes,
.assessment-audience {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    padding: 30px;
}

.assessment-outcomes h3,
.assessment-audience h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.assessment-outcomes h3 i,
.assessment-audience h3 i {
    color: #36b5d8;
    margin-right: 10px;
}

.assessment-outcomes ul,
.assessment-audience ul {
    list-style: none;
    padding: 0;
}

.assessment-outcomes ul li,
.assessment-audience ul li {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.assessment-outcomes ul li::before,
.assessment-audience ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    position: absolute;
    left: 0;
    top: 6px;
    color: #36b5d8;
}

.assessment-engagement {
    margin-bottom: 50px;
}

.assessment-engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.assessment-engagement-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #36b5d8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.assessment-engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(54, 181, 216, 0.15);
}

.assessment-engagement-card i {
    font-size: 2rem;
    color: #139ad8;
    margin-bottom: 15px;
}

.assessment-engagement-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.assessment-engagement-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.assessment-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 50px;
}

.assessment-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.assessment-cta p {
    color: #ccc;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 15px;
    line-height: 1.7;
}

.assessment-cta .btn {
    margin-top: 10px;
}

.assessment-subheadline {
    font-size: 1.1rem;
    color: #139ad8;
    font-weight: 600;
    line-height: 1.6;
}

/* Two Questions */
.assessment-questions {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.assessment-questions h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
}

.assessment-questions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto 25px;
}

.assessment-question-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #139ad8;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.question-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #139ad8, #0f3460);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.assessment-question-card p {
    font-size: 1.05rem;
    color: #333;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.assessment-questions-hook {
    font-size: 1.1rem;
    color: #139ad8;
    font-weight: 700;
}

/* AI Callout */
.assessment-ai-callout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border-left: 4px solid #f0ad4e;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 50px;
}

.assessment-ai-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: #f0ad4e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assessment-ai-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.assessment-ai-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 8px;
}

.assessment-ai-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* How It Works */
.assessment-process {
    margin-bottom: 50px;
}

.assessment-process h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.assessment-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
}

.assessment-process-step {
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.process-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #139ad8, #0f3460);
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 15px;
}

.assessment-process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.assessment-process-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.assessment-process-connector {
    display: flex;
    align-items: center;
    padding-top: 15px;
    color: #139ad8;
    font-size: 1.2rem;
}

/* Real-World Insight */
.assessment-insight {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
}

.assessment-insight h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
}

.assessment-insight h3 i {
    color: #36b5d8;
    margin-right: 10px;
    font-size: 1.1rem;
}

.assessment-insight-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.assessment-insight-content ul {
    list-style: none;
    padding: 0;
}

.assessment-insight-content ul li {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.assessment-insight-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    position: absolute;
    left: 0;
    top: 6px;
    color: #36b5d8;
}

/* Engagement Note */
.assessment-engagement-note {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-top: 20px;
}

.assessment-engagement-note i {
    color: #139ad8;
    margin-right: 6px;
}

/* ===== Purrveyor Café Page ===== */
.purrveyor-img {
    background-image: url('assets/purrveyor/cafe%20game%20icon.png');
    background-color: #fff5e6;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(245, 160, 160, 0.25);
}

.purrveyor-feature-icon.img {
    background: transparent;
    width: 72px;
    height: 72px;
    padding: 4px;
}

.purrveyor-feature-icon.img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.purrveyor-impact {
    background: linear-gradient(135deg, #f5a0a0 0%, #e88e8e 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
}

.purrveyor-impact h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.purrveyor-impact h3 i {
    color: #fff;
    margin-right: 10px;
}

.purrveyor-impact-intro {
    font-size: 1.05rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

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

.purrveyor-stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px 20px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.purrveyor-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5a0a0, #e88e8e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.purrveyor-stat-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.purrveyor-stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 8px;
}

.purrveyor-stat-label {
    font-size: 0.95rem;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.purrveyor-impact-note {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.9;
    margin-top: 10px;
}

.purrveyor-impact-note i {
    margin-right: 6px;
}

.purrveyor-section {
    margin-bottom: 50px;
}

.purrveyor-section > h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
}

.purrveyor-section > p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.purrveyor-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.purrveyor-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #f5a0a0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.purrveyor-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(245, 160, 160, 0.25);
}

.purrveyor-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5a0a0, #e88e8e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.purrveyor-feature-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.purrveyor-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.purrveyor-feature-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.purrveyor-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.purrveyor-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fdf4f4;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #f5a0a0;
}

.purrveyor-highlight > i {
    font-size: 1.5rem;
    color: #e88e8e;
    margin-top: 2px;
    flex-shrink: 0;
}

.purrveyor-highlight > img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-top: 2px;
    flex-shrink: 0;
}

.purrveyor-highlight strong {
    display: block;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.purrveyor-highlight p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.purrveyor-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 50px;
}

.purrveyor-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.purrveyor-cta > p {
    color: #ccc;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.purrveyor-store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.purrveyor-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #1a1a2e;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 200px;
}

.purrveyor-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.purrveyor-store-btn.coming-soon {
    opacity: 0.75;
    cursor: not-allowed;
}

.purrveyor-store-btn.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.purrveyor-store-btn i {
    font-size: 2rem;
}

.purrveyor-store-btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.purrveyor-store-btn small {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.purrveyor-store-btn strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.purrveyor-cta-note {
    color: #ccc;
    font-size: 0.95rem;
    margin-top: 10px;
}

.purrveyor-cta-note a {
    color: #36b5d8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.purrveyor-cta-note a:hover {
    color: #f5a0a0;
}

/* Gaming Featured: Purrveyor variant */
.gaming-featured.purrveyor-feature {
    background: linear-gradient(135deg, #f5a0a0 0%, #e88e8e 50%, #d47676 100%);
}

.gaming-featured.purrveyor-feature h3 i {
    color: #fff;
}

.gaming-featured.purrveyor-feature .btn-primary {
    background: #fff;
    color: #1a1a2e;
}

.gaming-featured.purrveyor-feature .btn-primary:hover {
    background: #1a1a2e;
    color: #fff;
}

/* ===== APPsolute Test Isolation Page ===== */
.ti-img {
    background-image: url('https://images.unsplash.com/photo-1555949963-ff9fe0c870eb?w=600&q=80');
    background-color: #1a1a2e;
}

.ti-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.ti-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f4ff;
    color: #0f3460;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ti-badge i {
    color: #139ad8;
    font-size: 0.75rem;
}

.ti-problem-solution {
    margin-bottom: 50px;
    text-align: center;
}

.ti-problem-solution > h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 30px;
}

.ti-ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.ti-ps-card {
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid #139ad8;
}

.ti-ps-card.problem {
    background: #fff5f5;
    border-left-color: #e74c3c;
}

.ti-ps-card.solution {
    background: #f0fff4;
    border-left-color: #27ae60;
}

.ti-ps-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.ti-ps-card.problem h4 {
    color: #e74c3c;
}

.ti-ps-card.solution h4 {
    color: #27ae60;
}

.ti-ps-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.ti-business-case {
    background: #f5f0ff;
    border-left: 4px solid #7c3aed;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 50px;
}

.ti-business-case h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 10px;
}

.ti-business-case h4 i {
    margin-right: 8px;
}

.ti-business-case p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.ti-highlights-section {
    margin-bottom: 50px;
}

.ti-highlights-section > h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 25px;
}

.ti-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ti-highlight-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #139ad8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ti-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(19, 154, 216, 0.15);
}

.ti-highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #139ad8, #0f3460);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ti-highlight-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.ti-highlight-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ti-highlight-card > p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ti-highlight-card ul {
    list-style: none;
    padding: 0;
}

.ti-highlight-card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.ti-highlight-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    position: absolute;
    left: 0;
    top: 5px;
    color: #139ad8;
}

.ti-audience {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
}

.ti-audience h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.ti-audience h3 i {
    color: #36b5d8;
    margin-right: 10px;
}

.ti-audience > p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 700px;
}

.ti-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ti-audience-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 18px;
}

.ti-audience-item i {
    color: #36b5d8;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ti-audience-item span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.ti-cta {
    background: linear-gradient(135deg, #139ad8 0%, #0f3460 100%);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 50px;
}

.ti-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.ti-cta > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.ti-cta .btn {
    background: #fff;
    color: #0f3460;
    font-weight: 700;
    margin-bottom: 15px;
}

.ti-cta .btn:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.ti-cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 10px;
}

.ti-cta-note a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ti-cta-note a:hover {
    color: #36b5d8;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-secrets {
        grid-template-columns: 1fr;
    }

    .mission-block,
    .mission-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .partnerships-grid {
        gap: 60px;
    }

    .service-detail-layout,
    .blog-post-layout {
        grid-template-columns: 1fr;
    }

    .more-services-grid {
        grid-template-columns: 1fr;
    }

    .assessment-why-grid,
    .assessment-two-col,
    .assessment-deliverables-grid {
        grid-template-columns: 1fr;
    }

    .assessment-approach-grid,
    .assessment-engagement-grid {
        grid-template-columns: 1fr;
    }

    .assessment-questions-grid {
        grid-template-columns: 1fr;
    }

    .assessment-process-grid {
        flex-direction: column;
        align-items: center;
    }

    .assessment-process-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .purrveyor-stats-grid,
    .purrveyor-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .purrveyor-highlights-grid {
        grid-template-columns: 1fr;
    }

    .ti-ps-grid,
    .ti-highlights-grid {
        grid-template-columns: 1fr;
    }

    .ti-audience-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 15px 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 10px 0;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .partnerships-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .stay-connected-two-col {
        grid-template-columns: 1fr;
    }

    .social-feed-grid {
        flex-direction: column;
        align-items: center;
    }

    .social-feed-card {
        max-width: 100%;
        width: 100%;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .services-hero-content h2,
    .products-hero-content h2 {
        font-size: 2rem;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .support-cards {
        grid-template-columns: 1fr;
    }

    .support-card {
        padding: 30px 20px;
    }

    .assessment-cta {
        padding: 35px 20px;
    }

    .assessment-ai-callout {
        flex-direction: column;
        gap: 15px;
    }

    .assessment-insight {
        padding: 30px 20px;
    }

    .purrveyor-stats-grid,
    .purrveyor-features-grid {
        grid-template-columns: 1fr;
    }

    .purrveyor-impact,
    .purrveyor-cta {
        padding: 30px 20px;
    }

    .purrveyor-store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ti-audience-grid {
        grid-template-columns: 1fr;
    }

    .ti-audience,
    .ti-cta {
        padding: 30px 20px;
    }

    .ti-business-case {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }
}

.contact-form-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.contact-form-cta .hihello-btn {
    display: inline-block;
    margin: 10px 0;
}

.contact-form-cta .hihello-hint {
    margin-top: 5px;
    color: #666; /* optional, keeps it subtle */
}

/* ===== Case Studies ===== */
.case-studies-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.case-studies-intro h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.case-studies-intro p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 55px;
}

.case-study-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #139ad8;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(19, 154, 216, 0.15);
}

.cs-industry {
    align-self: flex-start;
    display: inline-block;
    background: linear-gradient(135deg, #139ad8, #0f3460);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.case-study-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 18px;
    line-height: 1.4;
}

.cs-field {
    margin-bottom: 16px;
}

.cs-field-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #139ad8;
    margin-bottom: 5px;
}

.cs-field p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.cs-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.cs-product-badge {
    display: inline-block;
    background: #f0f4ff;
    color: #139ad8;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

.cs-outcome {
    background: #f8f9fa;
    border-left: 3px solid #139ad8;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin-top: auto;
}

.cs-outcome .cs-field-label {
    color: #0f3460;
}

/* Scaffold placeholder marker — intentionally loud so it cannot ship unnoticed */
.cs-placeholder {
    background: #fff8e1;
    border: 1px dashed #e0a800;
    border-radius: 6px;
    padding: 8px 12px;
    color: #8a6d00;
    font-style: italic;
    font-size: 0.9rem;
}

/* ===== Solution-page case-study highlight slot ===== */
.solution-cs-highlight {
    background: linear-gradient(135deg, #0f3460 0%, #139ad8 100%);
    border-radius: 12px;
    padding: 35px 40px;
    margin-bottom: 50px;
    color: #fff;
}

.solution-cs-highlight h3 {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.solution-cs-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.solution-cs-highlight .btn-pink {
    margin-top: 4px;
}

/* Four-up grid for the Atlassian solution-area cards */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .solution-cs-highlight {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== About Us ===== */
.about-hero {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 30px;
}

.about-hero h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 18px;
}

.about-hero-lede {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 60px;
    max-width: 900px;
}

.about-credential {
    background: linear-gradient(135deg, #139ad8, #0f3460);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-credential i {
    font-size: 0.9rem;
}

.about-section {
    margin-bottom: 55px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.about-section h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-section p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-founder-feature {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #139ad8;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: start;
    margin-top: 30px;
}

.about-founder-meta {
    text-align: center;
}

.about-founder-meta .role-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #139ad8;
    margin-bottom: 8px;
}

.about-founder-meta h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin: 0;
}

.about-founder-bio p {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-founder-bio p:last-of-type {
    margin-bottom: 0;
}

.about-founder-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.about-founder-creds .about-credential {
    font-size: 0.78rem;
    padding: 6px 14px;
}

.about-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.about-avatar.monogram {
    background: linear-gradient(135deg, #36b5d8 0%, #139ad8 100%);
}

.about-founder-meta .about-avatar {
    width: 110px;
    height: 110px;
    font-size: 2.6rem;
    margin: 0 auto 16px;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: #0a66c2;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}

.founder-linkedin:hover {
    color: #004182;
}

.founder-linkedin i {
    font-size: 1.1rem;
}

.about-team-note {
    background: #f8f9fa;
    border-left: 3px solid #139ad8;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-top: 28px;
    color: #555;
    font-size: 0.98rem;
    line-height: 1.75;
}

.about-team-note strong {
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .about-founder-feature {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 24px;
    }

    .about-hero h2 {
        font-size: 1.7rem;
    }
}

/* ===== Home Page Sections ===== */
.home-credentials-section {
    background: #f8f9fa;
    padding: 32px 0;
}

.home-credentials-section .about-credentials {
    margin: 0 auto;
}

.home-services {
    padding: 50px 0;
}

.home-section-lede {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.75;
}

.home-featured-case {
    padding: 0 0 50px;
}

.home-cta-band {
    background: linear-gradient(135deg, #0f3460 0%, #139ad8 100%);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.home-cta-band h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 14px;
}

.home-cta-band p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-band p a {
    color: #fff;
    text-decoration: underline;
}

/* ===== Case Study Quote + Single-Card Centering ===== */
.cs-quote {
    margin: 20px 0 0;
    padding: 16px 18px;
    border-left: 3px solid #139ad8;
    background: #fafbfd;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.65;
}

.cs-quote-attr {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    font-style: normal;
    color: #777;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Center a single case study card cleanly within the grid */
.case-study-grid:has(> .case-study-card:only-child) {
    grid-template-columns: minmax(0, 640px);
    justify-content: center;
}

/* ============================================================
   RADAR directory + evaluation pages
   ============================================================ */

/* Search + filter controls */
.radar-controls {
    margin-bottom: 35px;
}
.radar-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto 22px;
}
.radar-search i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #139ad8;
}
.radar-search input {
    width: 100%;
    padding: 14px 18px 14px 46px;
    border: 2px solid #e3e8ef;
    border-radius: 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.98rem;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.radar-search input:focus {
    outline: none;
    border-color: #139ad8;
    box-shadow: 0 0 0 3px rgba(19, 154, 216, 0.12);
}
.radar-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.radar-chip {
    background: #fff;
    border: 2px solid #e3e8ef;
    color: #555;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}
.radar-chip:hover {
    border-color: #139ad8;
    color: #139ad8;
}
.radar-chip.active {
    background: linear-gradient(135deg, #139ad8, #0f3460);
    border-color: transparent;
    color: #fff;
}

/* Directory grid */
.radar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
.radar-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #139ad8;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}
.radar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(19, 154, 216, 0.15);
}
.radar-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 10px;
}
.radar-card-category {
    display: inline-block;
    background: linear-gradient(135deg, #139ad8, #0f3460);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 11px;
    border-radius: 12px;
}
.radar-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 11px;
    border-radius: 12px;
    white-space: nowrap;
}
.radar-badge-free {
    background: #eef6ee;
    color: #2e7d32;
}
.radar-badge-sponsored {
    background: #fff3e0;
    color: #c77700;
}
.radar-card-app {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: #1a1a2e;
    margin: 0 0 4px;
}
.radar-card-vendor {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 14px;
}
.radar-card-summary {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 18px;
    flex-grow: 1;
}
.radar-card-scores {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}
.radar-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    background: #f7f9fc;
}
.radar-score-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.radar-score-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #888;
    margin-top: 5px;
}
.score-strong .radar-score-num,
.radar-score.score-strong .radar-score-num { color: #2e7d32; }
.score-moderate .radar-score-num,
.radar-score.score-moderate .radar-score-num { color: #c77700; }
.score-watch .radar-score-num,
.radar-score.score-watch .radar-score-num { color: #c0392b; }
.score-pending .radar-score-num,
.radar-score.score-pending .radar-score-num { color: #9aa5b1; }
.radar-card-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #139ad8;
}
.radar-card-cta i {
    margin-left: 4px;
    transition: transform 0.2s;
}
.radar-card:hover .radar-card-cta i {
    transform: translateX(4px);
}

/* No-results / unmet-demand + load error */
.radar-no-results {
    text-align: center;
    background: #f7f9fc;
    border: 2px dashed #d4deea;
    border-radius: 12px;
    padding: 40px 30px;
    margin-bottom: 40px;
}
.radar-no-results h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.radar-no-results p {
    color: #555;
    max-width: 560px;
    margin: 0 auto 22px;
}

/* ---------- Evaluation detail page ---------- */
.radar-report {
    max-width: 860px;
}
.radar-placeholder-banner {
    background: #fff8e1;
    border: 1px solid #ffe0a3;
    color: #8a6d00;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.88rem;
    margin-bottom: 22px;
}
.radar-placeholder-banner i { margin-right: 8px; }
.radar-back-link {
    display: inline-block;
    color: #139ad8;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 22px;
}
.radar-back-link i { margin-right: 6px; }
.radar-sponsored-banner {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff3e0;
    border-left: 4px solid #c77700;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 26px;
}
.radar-sponsored-banner i {
    color: #c77700;
    font-size: 1.2rem;
    margin-top: 2px;
}
.radar-sponsored-banner div {
    font-size: 0.9rem;
    color: #5c4a1a;
    line-height: 1.6;
}
.radar-sponsored-banner a {
    color: #b25e00;
    font-weight: 600;
    text-decoration: underline;
}
.radar-report-head { margin-bottom: 26px; }
.radar-report-head .radar-badge,
.radar-report-head .radar-card-category {
    margin-right: 8px;
    margin-bottom: 14px;
    vertical-align: middle;
}
.radar-report-head h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    color: #1a1a2e;
    margin: 8px 0 4px;
}
.radar-report-vendor {
    color: #888;
    font-size: 1rem;
    margin: 0 0 16px;
}
.radar-report-lede {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #444;
}
.radar-report-scores {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
}
.radar-score-block {
    flex: 1;
    text-align: center;
    background: #f7f9fc;
    border-radius: 12px;
    padding: 22px;
}
.radar-score-block .radar-score-num { font-size: 2.6rem; }
.radar-score-block .radar-score-label {
    display: block;
    font-size: 0.78rem;
    margin-top: 6px;
}
.radar-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #1a1a2e;
    margin: 34px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef1f6;
}
.radar-section-title i { color: #139ad8; margin-right: 8px; }
.radar-scorecard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.radar-dim {
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 10px;
    padding: 16px 18px;
}
.radar-dim-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.radar-dim-score {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
}
.radar-dim p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* Video embed (responsive 16:9) */
.radar-video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #0f3460;
    margin-bottom: 10px;
}
.radar-video-embed iframe,
.radar-video-embed .radar-video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.radar-video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    background: linear-gradient(135deg, #139ad8, #0f3460);
}
.radar-video-placeholder i { font-size: 2.4rem; }
.radar-video-placeholder span { font-size: 0.9rem; opacity: 0.85; }

/* Gated download block */
.radar-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    color: #fff;
    border-radius: 12px;
    padding: 28px 30px;
    margin: 40px 0 24px;
}
.radar-download h3 { color: #fff; margin: 0 0 6px; }
.radar-download p { color: #cfd8e6; font-size: 0.92rem; margin: 0; max-width: 520px; }
.radar-download .btn { white-space: nowrap; }
.radar-disclosure-note {
    font-size: 0.88rem;
    color: #777;
    border-top: 1px solid #eef1f6;
    padding-top: 18px;
}
.radar-disclosure-note i { color: #139ad8; margin-right: 6px; }

/* Responsive */
@media (max-width: 900px) {
    .radar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .radar-grid { grid-template-columns: 1fr; }
    .radar-scorecard { grid-template-columns: 1fr; }
    .radar-report-scores { flex-direction: column; }
    .radar-report-head h1 { font-size: 1.8rem; }
    .radar-download { flex-direction: column; align-items: flex-start; }
}

/* RADAR: browse directory CTA on the methodology page */
.radar-browse-cta {
    text-align: center;
    margin-top: 30px;
}

/* RADAR evaluation detail — meta row (overall score, quadrant, staleness) */
.radar-meta-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: #f7f9fc;
    border-radius: 12px;
}
.radar-meta-overall {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.radar-meta-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
}
.radar-meta-overall.score-strong .radar-meta-num { color: #2e7d32; }
.radar-meta-overall.score-moderate .radar-meta-num { color: #c77700; }
.radar-meta-overall.score-watch .radar-meta-num { color: #c0392b; }
.radar-meta-overall.score-pending .radar-meta-num { color: #9aa5b1; }
.radar-meta-cap {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #888;
    margin-top: 5px;
}
.radar-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.radar-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #e3e8ef;
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 16px;
}
.radar-pill i { color: #139ad8; }
.radar-stale-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #9aa5b1;
}
.radar-stale-green .radar-stale-dot { background: #2e7d32; }
.radar-stale-yellow .radar-stale-dot { background: #c77700; }
.radar-stale-red .radar-stale-dot { background: #c0392b; }

/* RADAR registration (Phase 1) */
.radar-register-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
}
.radar-register-logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 22px;
}
.radar-register-aside h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    color: #1a1a2e;
    margin: 0 0 12px;
}
.radar-register-aside > p {
    color: #555;
    line-height: 1.65;
    margin: 0 0 20px;
}
.radar-register-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.radar-register-benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.5;
    font-size: 0.95rem;
}
.radar-register-benefits li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #2e7d32;
}
.radar-register-independence {
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #eef1f6;
    padding-top: 16px;
    margin: 0;
}
.radar-register-independence i { color: #139ad8; margin-right: 6px; }
.radar-register-form {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #139ad8;
    margin-top: 10px;
}
.radar-field-row {
    display: flex;
    gap: 16px;
}
.radar-field-row .radar-field { flex: 1; }
.radar-field { margin-bottom: 18px; }
.radar-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.radar-field .req { color: #c0392b; }
.radar-field input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e3e8ef;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.radar-field input:focus {
    outline: none;
    border-color: #139ad8;
    box-shadow: 0 0 0 3px rgba(19, 154, 216, 0.12);
}
.radar-register-form .btn { width: 100%; margin-top: 6px; }
.radar-register-fine {
    font-size: 0.8rem;
    color: #888;
    margin-top: 14px;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .radar-register-grid { grid-template-columns: 1fr; gap: 26px; max-width: 560px; }
    .radar-register-logo { margin-left: auto; margin-right: auto; }
    .radar-register-aside { text-align: center; }
    .radar-register-benefits { display: inline-block; text-align: left; }
}
@media (max-width: 480px) {
    .radar-field-row { flex-direction: column; gap: 0; }
}

/* RADAR directory: In-Process (unscored) cards */
.radar-badge-inprocess {
    background: #eef2f7;
    color: #5a6b7b;
}
.radar-card-inprocess {
    border-top-color: #9aa5b1;
    cursor: default;
}
.radar-card-inprocess:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.radar-card-cta-muted {
    color: #9aa5b1;
    margin-top: auto;
}

/* RADAR: clickable vendor name (filters the directory by vendor) */
.radar-vendor-link {
    color: #139ad8;
    cursor: pointer;
    border-bottom: 1px dotted currentColor;
}
.radar-vendor-link:hover {
    color: #0d7bb5;
    border-bottom-style: solid;
}
.radar-report-vendor a {
    color: #139ad8;
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
}
.radar-report-vendor a:hover { border-bottom-style: solid; }
