/* Content SEO Page Styles */

/* Common Utilities */
.content-seo-page {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

.bg-light-blue {
    background-color: #f8fbff;
}

.text-blue {
    color: #0d6efd;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.btn-glow {
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(13, 110, 253, 0.4);
}

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

@keyframes floatDynamic {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Hero Section - Sporty & Dynamic */
.content-hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

/* Sporty Background Elements */
.content-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 60%; height: 200%;
    background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent);
    transform: rotate(15deg);
    z-index: 0;
    pointer-events: none;
}

.content-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.content-hero__text .badge {
    display: inline-block;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    text-transform: uppercase;
    transform: skewX(-10deg);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
    animation: fadeInUp 0.8s ease forwards;
}

.content-hero__title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.content-hero__title span {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    transform: skewX(-5deg);
}

.content-hero__desc {
    font-size: 1.15rem;
    color: #475569;
    font-weight: 500;
    max-width: 90%;
    line-height: 1.6;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.content-hero__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible; /* Allow glow to bleed out */
    animation: floatDynamic 6s ease-in-out infinite;
}

.content-hero__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border: 4px solid #fff;
    position: relative;
    z-index: 2;
}

.content-hero__glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(37,99,235,0.3) 0%, rgba(6,182,212,0) 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(20px);
}

/* Consult Bar - Floating Sporty Style */
.content-consult-bar {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: -40px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.content-consult-bar__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-consult-bar__form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 10px 10px 10px 15px;
    border-radius: 100px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    flex: 1;
    border-right: 1px solid #f1f5f9;
}

.form-input-group:last-of-type {
    border-right: none;
}

.form-input-group i {
    color: #1890ff;
    font-size: 1.4rem;
    margin: 0 0 8px 0;
}

.form-input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent;
    color: #334155;
    text-align: center;
}

.form-input-group input::placeholder {
    color: #94a3b8;
    text-align: center;
}

.form-input-group select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent;
    color: #334155;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    text-align: center;
    text-align-last: center;
}

.form-input-group select:invalid {
    color: #94a3b8;
}

.form-input-group select option {
    color: #334155;
    background: #fff;
}

.content-consult-bar__form .btn {
    padding: 18px 45px;
    margin-left: 15px;
    background: #1890ff; /* Bright blue to match screenshot */
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    transform: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(24, 144, 255, 0.3);
    white-space: nowrap;
}

.content-consult-bar__form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(24, 144, 255, 0.4);
}

/* Role of Content SEO Section */
/* Role of Content SEO Section */
.content-role {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.content-role::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

.content-role__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.content-role__image {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    z-index: 1;
}

.content-role__image::before {
    content: '';
    position: absolute;
    top: 20px; left: -20px;
    width: 100%; height: 100%;
    border: 3px solid #2563eb;
    border-radius: 24px;
    z-index: -1;
    transform: skewX(-3deg);
}

.content-role__image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    transform: skewX(-1deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-role__image:hover img {
    transform: skewX(-1deg) translateY(-10px);
}

.content-badge-1 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    transform: skewX(-5deg);
    animation: floatDynamic 5s ease-in-out infinite;
    border-left: 5px solid #f97316;
}

.content-badge-1 i {
    font-size: 35px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-badge-1 strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.content-badge-1 span {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-role__intro {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.role-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.role-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.role-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #2563eb, #06b6d4);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.role-item:hover {
    transform: translateX(15px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: transparent;
}

.role-item:hover::before {
    transform: scaleY(1);
}

.role-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #2563eb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.role-item:hover .role-icon {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.role-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.role-info p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Key Roles Section */
.content-key-roles {
    position: relative;
}
.content-key-roles::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%232563eb" opacity="0.05"/></svg>') repeat;
    z-index: 0; pointer-events: none;
}

.key-roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.key-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 0 30px 0 30px; /* Sporty diagonal cuts */
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.key-card::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: linear-gradient(135deg, rgba(37,99,235,0.05), transparent);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}

.key-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.key-card:hover::after {
    transform: scale(2);
    background: linear-gradient(135deg, rgba(37,99,235,0.1), transparent);
}

.key-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    transform: skewX(-5deg);
    transition: transform 0.3s ease;
}

.key-card:hover .key-card__icon {
    transform: skewX(-5deg) translateY(-5px);
}

.key-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
}

.key-card p {
    color: #4a5568;
    font-size: 15px;
}

/* Service Types Section */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.type-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 40px 0 40px 0; /* Asymmetric sporty cut */
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #e2e8f0;
    box-shadow: 8px 8px 0 rgba(37, 99, 235, 0.1);
    z-index: 1;
}

.type-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 14px 14px 0 #2563eb; /* Solid bold shadow */
    border-color: #2563eb;
}

.type-card__icon {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    color: #2563eb;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 20px 0;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.type-card:hover .type-card__icon {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    transform: scale(1.1) rotate(10deg);
}

.type-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #0f172a;
}

.type-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

/* Highlighted card */
.type-card.highlighted {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    box-shadow: 8px 8px 0 rgba(249, 115, 22, 0.3);
}

.type-card.highlighted:hover {
    transform: translate(-6px, -6px);
    box-shadow: 14px 14px 0 #f97316; /* Solid orange shadow */
}

.type-card.highlighted .type-card__icon {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.type-card.highlighted:hover .type-card__icon {
    background: #f97316;
    border-color: #f97316;
}

.type-card.highlighted h3,
.type-card.highlighted p {
    color: #fff;
}

/* Pricing Grid - reuse from seo.css logic but scoped */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3); /* Blue glow */
    border-color: #2563eb;
    z-index: 10;
}

.pricing-card.highlighted {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.pricing-card.highlighted:hover {
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3); /* Orange glow */
    border-color: #f97316;
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.pricing-card__subtitle {
    font-size: 13px;
    color: #718096;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.pricing-card__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
}

.pricing-card__price {
    font-size: 36px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card__price span {
    font-size: 16px;
    font-weight: 500;
    color: #718096;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.pricing-card__features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #475569;
}

.pricing-card__features li i {
    color: #2563eb;
}

.pricing-card .btn {
    margin-top: auto;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 35px;
    border-radius: 50px;
    border: 2px solid #2563eb;
    color: #2563eb;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card .btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.pricing-card.highlighted .btn {
    border-color: #f97316;
    color: #f97316;
}

.pricing-card.highlighted .btn:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

/* 9 Steps Process Grid */
.nine-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Center the 7th card on desktop when there are exactly 7 items */
@media (min-width: 993px) {
    .nine-step-card:last-child:nth-child(7) {
        grid-column: 2;
    }
}

.nine-step-card {
    background: linear-gradient(145deg, #000000 0%, #0f172a 40%, #1e40af 100%); /* Mix of black and deep blue */
    padding: 50px 40px;
    border-radius: 40px 0 40px 0; /* Cyberpunk cut */
    border: 1px solid rgba(255, 255, 255, 0.15); /* White glass border */
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 8px 8px 0 rgba(14, 165, 233, 0.15); /* Cyan shadow */
}

.nine-step-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0 #0ea5e9; /* Cyan solid shadow */
    border-color: #0ea5e9;
}

.nine-step-card__bg {
    position: absolute;
    bottom: -20px;
    right: 5px;
    font-size: 140px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.05);
    z-index: 1;
    line-height: 1;
    transition: all 0.5s ease;
}

.nine-step-card:hover .nine-step-card__bg {
    -webkit-text-stroke: 2px rgba(37, 99, 235, 0.3);
    transform: scale(1.05) rotate(-5deg);
}

.nine-step-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    transform: skewX(-10deg);
    border-radius: 10px;
    transition: all 0.4s ease;
}

.nine-step-card:hover .nine-step-card__icon {
    transform: skewX(-10deg) scale(1.1);
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.nine-step-card__icon i {
    transform: skewX(10deg); /* Counter skew for icon */
}

.nine-step-card__content {
    position: relative;
    z-index: 2;
}

.nine-step-card__content h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.nine-step-card__content p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Stats Banner */
.content-stats-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
    border-radius: 40px 0 40px 0;
    margin: 60px auto;
    max-width: 1200px;
    padding: 50px 40px;
    color: #fff;
    position: relative;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
    overflow: hidden;
}

/* Add a sporty diagonal background stripe */
.content-stats-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
    pointer-events: none;
}

.stats-banner-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.stats-banner-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* 5-item layout: single row */
.stats-banner-inner--5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.stat-banner-item {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-banner-item:hover {
    transform: translateY(-10px);
}

.stat-banner-item .stat-icon {
    font-size: 24px;
    margin: 0 auto 18px;
    color: #fff;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-banner-item .stat-icon i {
    transform: rotate(-45deg);
    transition: all 0.4s ease;
}

.stat-banner-item:hover .stat-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
    transform: rotate(0deg) scale(1.1); /* Turns back into a square on hover */
}

.stat-banner-item:hover .stat-icon i {
    transform: rotate(0deg);
}

.stat-banner-item h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.4;
}

.stat-banner-item p {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.55;
}

/* CTA Section */
.content-cta-box {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 4fr 6fr; /* Left side smaller */
    box-shadow: 0 20px 50px rgba(15,23,42,0.08);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #f1f5f9;
}

.content-cta-info {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #fff;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-cta-info::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 200px; height: 200px;
    background: linear-gradient(135deg, #3b82f6, transparent);
    border-radius: 50%;
    opacity: 0.2;
}

.content-cta-info h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.content-cta-info p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.contact-details .detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.detail-item i {
    font-size: 20px;
    color: #3b82f6;
    background: rgba(255,255,255,0.05);
    width: 45px; height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.detail-item span {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.detail-item strong {
    font-size: 16px;
    color: #fff;
}

.content-cta-form-wrapper {
    padding: 40px;
    background: #fff;
}

.content-cta-form label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    display: block;
}

.content-cta-form .form-control {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.content-cta-form .form-control:focus {
    background: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.content-cta-form .btn,
.content-cta-form .wpcf7-submit {
    margin: 20px auto 0;
    display: block;
    min-width: 200px;
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    color: #fff;
}

.content-cta-form .btn:hover,
.content-cta-form .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .content-hero__inner, .content-role__inner {
        grid-template-columns: 1fr;
    }
    .content-consult-bar__form {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 15px;
    }
    .form-input-group {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 10px 0;
        width: 100%;
    }
    .key-roles-grid, .service-types-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.highlighted {
        padding: 40px 30px;
        transform: none;
    }
    .pricing-card:hover {
        transform: none;
    }
    .nine-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-banner-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .content-cta-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nine-steps-grid, .stats-banner-inner {
        grid-template-columns: 1fr;
    }
    .content-hero__title {
        font-size: 36px;
    }
    .content-role__intro:nth-of-type(1) {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .content-role__intro:nth-of-type(2) {
        display: none;
    }
    .content-cta-info {
        padding: 30px 20px;
    }
    .content-cta-info h2 {
        font-size: 24px;
    }
    .contact-details .detail-item {
        gap: 10px;
    }
    .detail-item i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .detail-item strong {
        font-size: 14px;
        word-break: break-word;
    }
    .content-cta-form-wrapper {
        padding: 30px 20px;
    }
}

/* CF7 Wrapper Fix for Inline Forms */
.form-input-group .wpcf7-form-control-wrap {
    display: block;
    flex-grow: 1;
    width: 100%;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
    width: 100%;
    text-overflow: ellipsis;
}

