/* Services Page Specific Styles */

/* Service Hero */
.service-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #232F3E 0%, #131921 100%);
    color: white;
    position: relative;
}

.service-hero.security {
    background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
}

.service-hero.development {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.service-hero.consulting {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

.service-hero.managed {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.service-hero.quicksight {
    background: linear-gradient(135deg, #1a365d 0%, #0d9488 100%);
}

.service-hero.serverless {
    background: linear-gradient(135deg, #f97316 0%, #7c3aed 100%);
}

.service-hero-content {
    max-width: 900px;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features .feature {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.security-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.security-stats .stat {
    text-align: center;
}

.security-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.security-stats .label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Security Shield Visualization */
.security-shield {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.shield-layers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shield-layers .layer {
    padding: 1.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    position: relative;
    transform: perspective(1000px) rotateX(10deg);
    transition: all 0.3s;
}

.shield-layers .layer:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Detailed Services Accordion */
.detailed-services {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.accordion-item.active {
    box-shadow: var(--shadow-lg);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-header h3 {
    margin: 0;
    color: var(--text-dark);
}

.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.accordion-content > * {
    padding: 0 2rem 2rem;
}

.service-details {
    list-style: none;
    margin: 1rem 0;
}

.service-details li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-details li:last-child {
    border-bottom: none;
}

.service-details strong {
    color: var(--text-dark);
    display: inline-block;
    margin-right: 0.5rem;
}

.service-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-technologies .tech {
    padding: 0.25rem 0.75rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Compliance Frameworks */
.compliance-frameworks {
    padding: 80px 0;
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.framework-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.framework-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.framework-card:hover::before {
    transform: scaleX(1);
}

.framework-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.framework-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.framework-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.framework-card ul {
    list-style: none;
    margin-top: 1rem;
}

.framework-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.framework-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Process */
.security-process {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-card ul {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
}

.process-card li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.875rem;
}

.process-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #131921 100%);
    color: white;
}

.service-cta .cta-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.service-cta .cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-cta .benefit {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 500;
}

.service-cta .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.service-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.service-cta .btn-secondary:hover {
    background: white;
    color: var(--secondary-color);
}

/* Partner Badges in Hero */
.partner-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.partner-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

/* Credentials Bar */
.credentials-bar {
    background: var(--secondary-color);
    padding: 1.5rem 0;
}

.credentials-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.credential img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.credential span {
    font-weight: 500;
    font-size: 0.875rem;
}

.location-badge {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
}

/* What We Build Section */
.what-we-build {
    padding: 80px 0;
    background: var(--bg-light);
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.build-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
}

.build-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.build-card.featured {
    border: 2px solid var(--primary-color);
}

.build-card .featured-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.build-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.build-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.build-features {
    list-style: none;
    margin-top: 1rem;
}

.build-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.build-features li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* AI Development Section */
.ai-development {
    padding: 80px 0;
    background: var(--gradient-secondary);
    color: white;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.ai-content .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.ai-content p {
    color: rgba(255, 255, 255, 0.85);
}

.ai-capabilities {
    margin-top: 2rem;
}

.ai-capabilities .capability {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.ai-capabilities h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ai-capabilities p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.ai-visual {
    display: flex;
    justify-content: center;
}

.ai-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.ai-stack .stack-layer {
    padding: 1.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transform: perspective(1000px) rotateX(10deg);
    transition: all 0.3s;
}

.ai-stack .stack-layer:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Tech Stack Section */
.tech-stack {
    padding: 80px 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
}

.tech-category h3 {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tech-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 6px;
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.tech-item.specialist {
    background: linear-gradient(90deg, rgba(255, 153, 0, 0.1), rgba(255, 153, 0, 0.05));
    border-left: 3px solid var(--primary-color);
}

.tech-name {
    font-weight: 500;
    color: var(--text-dark);
}

.specialist-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
    background: var(--bg-light);
}

.work-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
}

.work-process::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.work-process .process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.work-process .step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.work-process h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.work-process p {
    font-size: 0.875rem;
}

/* Why Cloudavian Section */
.why-cloudavian {
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.reason-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reason-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

/* Trust Indicators */
.trust-indicators {
    background: var(--bg-light);
    padding: 2rem 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.trust-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.trust-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Assessment Services Section */
.assessment-services {
    padding: 80px 0;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-showcase-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-showcase-card:hover {
    box-shadow: var(--shadow-lg);
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
}

.showcase-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.showcase-header h3 {
    margin: 0;
    color: var(--text-dark);
}

.showcase-content {
    padding: 2rem;
}

.showcase-features {
    margin: 1.5rem 0;
}

.showcase-features h4,
.showcase-methodology h4,
.showcase-compliance h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.showcase-features ul {
    list-style: none;
}

.showcase-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.showcase-features li:last-child {
    border-bottom: none;
}

.showcase-features strong {
    color: var(--text-dark);
}

.showcase-methodology {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.showcase-compliance {
    margin-top: 1.5rem;
}

.showcase-compliance .compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.price-display {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-display .price {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-display .price-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.pricing-description {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-light);
}

.pricing-features li svg {
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Hero Price Card */
.hero-price-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    display: inline-block;
}

.price-highlight {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-highlight .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.price-highlight .price-period {
    font-size: 1rem;
    opacity: 0.9;
}

.price-includes {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.price-includes li {
    font-size: 0.875rem;
    opacity: 0.9;
    padding-left: 1.25rem;
    position: relative;
}

.price-includes li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Deliverables Section */
.deliverables {
    padding: 80px 0;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.deliverable-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.deliverable-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.deliverable-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.deliverable-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

/* Assessment Process */
.assessment-process {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -2rem;
    width: 2px;
    background: var(--border-color);
}

.timeline-step:last-child::before {
    display: none;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    flex: 1;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
}

.why-choose-us .reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.reason-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.reason-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.reason-item .reason-icon {
    width: 60px;
    height: 60px;
    background: white;
    flex-shrink: 0;
}

.reason-item .reason-content {
    flex: 1;
}

.reason-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.reason-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Price Reminder */
.cta-price-reminder {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.cta-price-reminder .price {
    font-size: 3rem;
    font-weight: 800;
}

.cta-price-reminder .includes {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* Security Assessment Hero */
.service-hero.security-assessment {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

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

    .security-stats {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-cta .cta-benefits {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .partner-badges {
        justify-content: center;
    }

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

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

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

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

    .work-process {
        grid-template-columns: 1fr;
    }

    .work-process::before {
        display: none;
    }

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

    .price-includes {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .showcase-header {
        flex-direction: column;
        text-align: center;
    }

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

    .cta-actions {
        flex-direction: column;
    }

    .hero-price-card {
        width: 100%;
    }
}