/* ============================================
   MSTIMAJ SERVICE PAGES - SHARED STYLES
   Used by: ai-automation, ai-consultation, website-setup
   Variables and fonts loaded via design-system.css
   ============================================ */

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 157, 0.3), 0 0 40px rgba(0, 255, 157, 0.1); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 157, 0.5), 0 0 80px rgba(0, 255, 157, 0.2); }
}

@keyframes counter-up {
    from { opacity: 0; transform: translateY(30px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* GSAP ready states */
.gsap-ready .gsap-fade-up {
    opacity: 0;
    transform: translateY(60px);
}

.gsap-ready .gsap-scale-in {
    opacity: 0;
    transform: scale(0.8);
}

/* ============================================
   HERO SECTION - WITH DEPTH
   ============================================ */
.service-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
    padding: 140px 20px 100px;
}

/* Grid pattern overlay */
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* Noise texture overlay */
.service-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 12s ease-in-out infinite;
    z-index: 0;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-green);
    top: -20%;
    left: -15%;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    bottom: -25%;
    right: -10%;
    animation-delay: -6s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    top: 50%;
    right: 20%;
    opacity: 0.2;
    animation-delay: -3s;
}

.service-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.service-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.25);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.service-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan), var(--accent-green));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s ease infinite;
}

.service-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--white-70);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    z-index: 2;
}

.scroll-hint-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-hint-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent-green), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================
   INTRO SECTION - FOUNDER HIGHLIGHT
   ============================================ */
.service-intro {
    padding: 100px 20px;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(0, 255, 157, 0.06) 0%, transparent 50%),
        var(--grey-dark);
    position: relative;
}

.service-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-card {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.05), rgba(0, 212, 255, 0.03));
    border: 1px solid rgba(0, 255, 157, 0.15);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan), var(--accent-green));
}

.intro-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
}

.intro-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--white-80);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-text:first-of-type {
    font-size: 1.35rem;
    color: var(--white);
}

.founder-highlight {
    color: var(--accent-green);
    font-weight: 700;
    position: relative;
}

.founder-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), transparent);
}

/* ============================================
   SERVICES GRID - CARDS WITH DEPTH
   ============================================ */
.services-section {
    padding: 100px 20px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 255, 157, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--grey-mid) 0%, var(--grey-dark) 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--white-50);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    background: rgba(18, 20, 26, 0.9);
    border: 1px solid var(--white-10);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top border animation on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

/* Glow effect on hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 157, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 255, 157, 0.1);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.15), rgba(0, 255, 157, 0.05));
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white-60);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--white-50);
    margin-bottom: 0.85rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-features li {
    color: var(--white-70);
}

.service-card-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: rgba(0, 255, 157, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.service-card-features li::after {
    content: '✓';
    position: absolute;
    margin-left: 4px;
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
}

/* ============================================
   BENEFITS SECTION - STATS WITH IMPACT
   ============================================ */
.benefits-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    position: relative;
    overflow: hidden;
}

/* Pattern overlay */
.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header .section-title {
    color: var(--black);
}

.benefits-header .section-desc {
    color: rgba(0, 0, 0, 0.7);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.15);
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.benefit-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* ============================================
   AUDIENCE SECTION - WHO THIS IS FOR
   ============================================ */
.audience-section {
    padding: 100px 20px;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        var(--grey-mid);
    position: relative;
}

.audience-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.audience-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.audience-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.audience-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgba(18, 20, 26, 0.9);
    border: 1px solid var(--white-10);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-green), var(--accent-cyan));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.audience-card:hover::before {
    transform: scaleY(1);
}

.audience-card:hover {
    border-color: rgba(0, 255, 157, 0.2);
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.audience-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 14px;
    color: var(--accent-green);
    transition: all 0.4s ease;
}

.audience-card:hover .audience-icon {
    background: rgba(0, 255, 157, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
}

.audience-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.audience-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white-50);
    line-height: 1.7;
}

/* ============================================
   SERVICE PRICE TAG
   ============================================ */
.service-price {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--accent-green);
    letter-spacing: 0.05em;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 6px;
    display: inline-block;
}

/* ============================================
   RELATED SERVICES
   ============================================ */
.related-services {
    padding: 80px 20px;
    background: var(--grey-dark);
    text-align: center;
}

.related-services-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.related-services-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.related-service-card {
    background: rgba(18, 20, 26, 0.9);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.related-service-card:hover {
    border-color: rgba(0, 255, 157, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.related-service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.related-service-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.6;
}

/* ============================================
   SERVICE CONTACT FOOTER
   ============================================ */
.service-contact {
    margin-top: 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white-50);
}

.service-contact p {
    margin-bottom: 0.4rem;
}

.contact-green {
    color: var(--accent-green);
    text-decoration: none;
}

.contact-green:hover {
    text-decoration: underline;
}

.contact-cyan {
    color: var(--accent-cyan);
    text-decoration: none;
}

.contact-cyan:hover {
    text-decoration: underline;
}

.contact-muted {
    color: var(--white-50);
    text-decoration: none;
}

.contact-muted:hover {
    color: var(--white-70);
}

/* ============================================
   PROCESS SECTION - HOW IT WORKS
   ============================================ */
.process-section {
    padding: 100px 20px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        var(--grey-dark);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

/* Connecting line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan), var(--accent-green));
    z-index: 0;
}

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

.process-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--grey-mid);
    border: 3px solid var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
    transition: all 0.4s ease;
    position: relative;
}

.process-number::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 157, 0.2);
}

.process-step:hover .process-number {
    background: var(--accent-green);
    color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.4);
}

.process-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.process-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white-50);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.service-cta {
    padding: 120px 20px;
    text-align: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.15), transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: pulse-glow 4s ease-in-out infinite;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.cta-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--white-50);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--black);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white-30);
}

.btn-ghost:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-4px);
}

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .audience-card {
        flex-direction: column;
        gap: 16px;
        padding: 1.75rem;
    }

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

    .service-hero {
        padding: 120px 20px 80px;
        min-height: 70vh;
    }

    .service-title {
        font-size: 2.2rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .intro-card {
        padding: 2rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .intro-text:first-of-type {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .benefit-number {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

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

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

    .scroll-hint {
        display: none;
    }
}

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

    .benefit-item {
        padding: 1.2rem 0.8rem;
    }

    .benefit-number {
        font-size: 2rem;
    }

    .benefit-label {
        font-size: 0.85rem;
    }

    .benefits-section {
        padding: 60px 15px;
    }
}
