/* ===== STYLES POUR LES PAGES DE SERVICES ===== */

/* Correction navbar pour les pages de services */
.navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Service Hero */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 115, 85, 0.08) 0%, transparent 50%),
        var(--dark);
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--gray);
}

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

.service-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.service-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-quick {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    font-size: 0.875rem;
}

.feature-quick i {
    color: var(--secondary);
    font-size: 1rem;
}

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

/* Service Visual/Mockup */
.service-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-mockup {
    perspective: 1000px;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.service-mockup:hover {
    transform: rotateY(-2deg) rotateX(2deg);
}

.mockup-browser {
    width: 400px;
    background: var(--dark-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.1);
}

.browser-header {
    background: var(--dark);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
    background: var(--dark-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: var(--gray);
    font-size: 0.875rem;
    flex: 1;
}

.browser-content {
    height: 300px;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
}

.mockup-website {
    padding: 2rem;
    height: 100%;
}

.mockup-header {
    height: 60px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-text {
    height: 12px;
    background: var(--gray);
    border-radius: 6px;
    opacity: 0.3;
}

.mockup-text.short {
    width: 60%;
}

.mockup-button {
    width: 120px;
    height: 40px;
    background: var(--secondary);
    border-radius: 20px;
    margin-top: 1rem;
    opacity: 0.7;
}

/* Service Details */
.service-details {
    padding: 6rem 0;
    background: var(--dark-light);
}

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

.service-type {
    background: var(--dark);
    border: 1px solid rgba(139, 115, 85, 0.2);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.service-type:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.service-type.featured {
    border-color: var(--secondary);
    background: rgba(212, 175, 55, 0.02);
    transform: scale(1.05);
}

.service-type-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-type:hover .service-type-icon {
    background: var(--secondary);
    color: var(--dark);
}

.service-type h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-type p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-type ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-type li {
    color: var(--light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-type li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.price-range {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
    padding: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 1rem;
}

/* Process */
.service-process {
    padding: 6rem 0;
    background: var(--dark);
}

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

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

.step-number {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--secondary);
    color: var(--dark);
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    font-size: 0.875rem;
    color: var(--secondary);
    font-weight: 500;
}

/* Technologies */
.service-technologies {
    padding: 6rem 0;
    background: var(--dark-light);
}

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

.tech-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    text-align: center;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    background: var(--dark);
    border: 1px solid rgba(139, 115, 85, 0.2);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.tech-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.tech-item span {
    display: block;
    color: var(--light);
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Section */
.service-cta-section {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
        var(--dark);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== STYLES SPÉCIFIQUES GOOGLE ADS ===== */

/* Dashboard Google Ads */
.ads-dashboard {
    background: var(--dark-light);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.dashboard-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
}

.status-dot.active {
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--dark);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.stat-trend {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.75rem;
}

.stat-trend.up {
    color: #4ade80;
}

.stat-trend.down {
    color: #f87171;
}

.dashboard-chart {
    background: var(--dark);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--secondary), var(--primary));
    border-radius: 2px;
    min-height: 20%;
    animation: chartGrow 1s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--bar-height, 50%); }
}

/* Results Section */
.ads-results {
    padding: 6rem 0;
    background: var(--dark);
}

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

.result-card {
    background: var(--dark-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--secondary);
}

.result-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1rem;
    color: var(--light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.result-desc {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Investment Section */
.ads-investment {
    padding: 6rem 0;
    background: var(--dark-light);
}

.investment-approach {
    margin-top: 3rem;
}

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

.approach-card {
    background: var(--dark);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    text-align: center;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.approach-card.premium {
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--dark) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--secondary);
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.approach-card p {
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.approach-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.approach-card ul li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.investment-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--dark);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.investment-cta h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.investment-cta p {
    color: var(--light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Pricing Section */
.ads-pricing {
    padding: 6rem 0;
    background: var(--dark-light);
}

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

.pricing-card {
    background: var(--dark);
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.pricing-card.featured {
    border-color: var(--secondary);
    background: rgba(212, 175, 55, 0.02);
    transform: scale(1.05);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-top: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-budget {
    font-size: 0.875rem;
    color: var(--gray);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

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

.pricing-features li {
    color: var(--light);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ===== STYLES SPÉCIFIQUES BRANDING ===== */

/* Branding Showcase */
.branding-showcase {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-variants {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.logo-variant {
    background: var(--dark-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: var(--transition);
    flex: 1;
}

.logo-variant:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.logo-shape {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    transition: var(--transition);
}

.logo-shape.circle {
    background: var(--secondary);
    border-radius: 50%;
}

.logo-shape.square {
    background: var(--primary);
    border-radius: 8px;
}

.logo-shape.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--secondary);
    margin: 0 auto 0.5rem;
}

.logo-text-demo {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--light);
    font-family: 'Oswald', sans-serif;
}

.color-palette {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.color-swatch {
    width: 60px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.color-swatch:hover {
    transform: scale(1.1);
    border-color: var(--secondary);
}

.brand-elements {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-light);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.element-line {
    width: 60px;
    height: 2px;
    background: var(--secondary);
}

.element-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.element-wave {
    width: 40px;
    height: 20px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    border-bottom: none;
}

/* Brand Elements Section */
.brand-elements-section {
    padding: 6rem 0;
    background: var(--dark);
}

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

.brand-element-card {
    background: var(--dark-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.brand-element-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.element-visual {
    height: 120px;
    background: var(--dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.demo-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: var(--secondary);
    border-radius: 6px;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--light);
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 120px;
}

.mini-color {
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.mini-color:nth-child(1) { background: var(--secondary); }
.mini-color:nth-child(2) { background: var(--primary); }
.mini-color:nth-child(3) { background: var(--dark); }
.mini-color:nth-child(4) { background: #4ade80; }
.mini-color:nth-child(5) { background: #f87171; }
.mini-color:nth-child(6) { background: #60a5fa; }

.typo-demo {
    text-align: center;
}

.typo-line.big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.typo-line {
    font-size: 1rem;
    color: var(--light);
    font-family: 'Space Grotesk', sans-serif;
}

.pattern-demo {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.pattern-shape {
    width: 20px;
    height: 20px;
    background: var(--secondary);
    opacity: 0.8;
}

.pattern-shape:nth-child(2) {
    border-radius: 50%;
    background: var(--primary);
}

.pattern-shape:nth-child(3) {
    transform: rotate(45deg);
    background: var(--secondary);
    opacity: 0.6;
}

.icon-set {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--secondary);
}

.mockup-demo {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mockup-card {
    width: 40px;
    height: 25px;
    background: var(--secondary);
    border-radius: 4px;
}

.mockup-phone {
    width: 20px;
    height: 35px;
    background: var(--primary);
    border-radius: 6px;
}

.brand-element-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.brand-element-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Branding Portfolio */
.branding-portfolio {
    padding: 6rem 0;
    background: var(--dark-light);
}

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

.portfolio-item {
    background: var(--dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
}

.placeholder-brand {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.placeholder-brand.luxury {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.placeholder-brand.tech {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.placeholder-brand.food {
    background: linear-gradient(135deg, #7c2d12 0%, #a16207 100%);
}

.placeholder-brand.health {
    background: linear-gradient(135deg, #166534 0%, #059669 100%);
}

.brand-logo-demo {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Oswald', sans-serif;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.portfolio-info p {
    color: var(--gray);
    font-size: 0.875rem;
}

/* ===== RESPONSIVE MOBILE ===== */

@media (max-width: 768px) {
    .service-hero {
        min-height: 100vh;
        padding: 100px 0 60px;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-hero-visual {
        order: -1;
    }
    
    .mockup-browser {
        width: 280px;
    }
    
    .browser-content {
        height: 200px;
    }
    
    .service-features-quick {
        justify-content: center;
    }
    
    .service-cta {
        justify-content: center;
    }
    
    .service-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-type.featured {
        transform: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-items {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Google Ads Mobile */
    .ads-dashboard {
        width: 100%;
        max-width: 320px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .chart-bars {
        height: 40px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-header {
        padding-top: 2.5rem;
    }
    
    .popular-badge {
        top: -0.75rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Branding Mobile */
    .branding-showcase {
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .logo-variants {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .logo-variant {
        padding: 1rem;
    }
    
    .color-palette {
        flex-wrap: wrap;
    }
    
    .color-swatch {
        width: 45px;
        height: 30px;
    }
    
    .brand-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-element-card {
        padding: 1.5rem;
    }
    
    .element-visual {
        height: 100px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .service-hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .mockup-browser {
        width: 240px;
    }
    
    .service-type {
        padding: 1.5rem;
    }
    
    .process-step {
        text-align: left;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .tech-item {
        padding: 1rem;
    }
    
    .tech-item i {
        font-size: 1.5rem;
    }
}
