/* Variables & Reset */
:root {
    --primary: #e73165; /* Brand color from logo */
    --primary-dark: #c41e4a;
    --primary-light: #ff4d7a;
    --secondary: #a855f7; /* Purple-500 equivalent */
    --background: #020617; /* Slate-950 */
    --surface: rgba(255, 255, 255, 0.05);
    --surface-hover: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1280px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box_sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background-color: white;
    color: black;
}

.btn-white:hover {
    background-color: #f1f5f9;
}

.btn-black {
    background-color: var(--primary);
    color: white;
}

.btn-black:hover {
    background-color: var(--primary-dark);
}

/* Header / Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover {
    color: black;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: black;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    color: #475569;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.hero:hover .hero-bg img {
    opacity: 0.7;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.8), #020617);
    z-index: 0;
}

/* Animated Background Elements */
.hero-animated-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    color: rgba(231, 49, 101, 0.5);
    animation: float var(--duration, 20s) var(--delay, 0s) infinite ease-in-out;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.floating-icon:hover {
    opacity: 0.7;
}

.floating-icon i,
.floating-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.floating-shape {
    position: absolute;
    opacity: 0.4;
    animation: float var(--duration, 18s) var(--delay, 0s) infinite ease-in-out;
}

.shape-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(231, 49, 101, 0.3);
    border: 2px solid rgba(231, 49, 101, 0.5);
}

.shape-square {
    width: 50px;
    height: 50px;
    background: rgba(231, 49, 101, 0.3);
    border: 2px solid rgba(231, 49, 101, 0.5);
    transform: rotate(45deg);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(231, 49, 101, 0.3);
    filter: drop-shadow(0 0 3px rgba(231, 49, 101, 0.5));
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-15px, -60px) rotate(-5deg);
    }
    75% {
        transform: translate(30px, -30px) rotate(3deg);
    }
}

/* Responsive adjustments for floating elements */
@media (max-width: 768px) {
    .floating-icon {
        width: 35px;
        height: 35px;
    }
    
    .shape-circle,
    .shape-square {
        width: 40px;
        height: 40px;
    }
    
    .shape-triangle {
        border-left-width: 20px;
        border-right-width: 20px;
        border-bottom-width: 35px;
    }
    
    .floating-icon {
        opacity: 0.4;
    }
    
    .floating-shape {
        opacity: 0.35;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(231, 49, 101, 0.2);
    border: 1px solid var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        min-height: 48px; /* Better touch target */
    }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(231, 49, 101, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(231, 49, 101, 0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gradient {
    color: var(--primary);
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0 2rem;
    font-style: italic;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1.5rem;
        margin: 1rem 0 1.5rem;
        letter-spacing: 0.5px;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    transition: color 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    color: var(--primary);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(231, 49, 101, 0.2);
    border: 2px solid rgba(231, 49, 101, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    animation: bounce-arrow 2s infinite ease-in-out;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    background: rgba(231, 49, 101, 0.3);
    border-color: var(--primary);
    transform: scale(1.1);
}

.scroll-arrow i,
.scroll-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .scroll-arrow i,
    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
}

/* Sections General */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.section-badge {
    display: inline-block;
    background: rgba(231, 49, 101, 0.15);
    border: 1px solid rgba(231, 49, 101, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: white;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(231, 49, 101, 0);
    transition: background 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.about-image:hover::before {
    background: rgba(231, 49, 101, 0.2);
    mix-blend-mode: overlay;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    border-color: rgba(231, 49, 101, 0.5);
    transform: translateY(-5px);
    background-color: var(--surface-hover);
    box-shadow: 0 10px 30px rgba(231, 49, 101, 0.2);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reason-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    transition: all 0.3s ease;
}

.reason-item:hover .reason-icon {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Why Us Image Hover Effect */
.why-us-image {
    position: relative;
    transition: transform 0.3s ease;
}

.why-us-image:hover {
    transform: scale(1.02);
}

.why-us-image img {
    transition: all 0.3s ease;
}

.why-us-image:hover img {
    transform: scale(1.05);
}

.why-us-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(231, 49, 101, 0);
    transition: background 0.3s ease;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.why-us-image:hover::after {
    background: rgba(231, 49, 101, 0.25);
}

/* Process Section */
.process-section {
    background-color: black;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(5, 1fr);
    }
}

.process-line {
    display: none;
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

@media (min-width: 1024px) {
    .process-line {
        display: block;
    }
}

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

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--background);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
}

/* References */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.client-card {
    height: 8rem;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(231, 49, 101, 0);
    transition: background 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.client-card:hover {
    background-color: var(--surface-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.client-card:hover::before {
    background: rgba(231, 49, 101, 0.15);
    mix-blend-mode: overlay;
}

.client-card img {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.client-card:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.client-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    z-index: 2;
}

.client-card:hover .client-name {
    color: white;
}

/* CTA Section */
.cta-section {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: overlay;
    z-index: -1;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(59, 130, 246, 0.1);
    z-index: -1;
}

/* Contact Section */
.contact-section {
    background-color: var(--background);
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .contact-grid {
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .contact-info-item {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .contact-icon i,
    .contact-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.contact-info-item > div:last-child {
    flex: 1;
}

@media (max-width: 768px) {
    .contact-info-item > div:last-child p {
        font-size: 0.8rem !important;
        margin-bottom: 0.25rem;
    }
    
    .contact-info-item > div:last-child a {
        font-size: 0.9rem !important;
        display: block;
        margin-bottom: 0.25rem;
        word-break: break-all;
    }
}

.contact-form-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.5rem 1rem;
        border-radius: 0.75rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1.25rem;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (max-width: 768px) {
    .form-input, .form-select, .form-textarea {
        padding: 0.875rem 0.875rem;
        font-size: 16px; /* Prevent zoom on iOS */
        border-radius: 0.5rem;
    }
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(231, 49, 101, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background-color: #020617;
    color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .form-textarea {
        min-height: 100px;
    }
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.form-error {
    background-color: #ef4444;
    color: white;
}

.form-message-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.form-message-content {
    flex: 1;
}

.form-message-content strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.form-message-content span {
    font-size: 0.875rem;
    opacity: 0.95;
}

/* Form Security Note */
.form-security-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.form-security-note i,
.form-security-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Mobile-specific form improvements */
@media (max-width: 768px) {
    .form-message {
        padding: 1rem;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .form-message-icon {
        font-size: 1.25rem;
    }
    
    .form-message-content strong {
        font-size: 0.9rem;
    }
    
    .form-message-content span {
        font-size: 0.8rem;
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        box-shadow: 0 0 0 2px rgba(231, 49, 101, 0.15);
    }
    
    /* Better select styling on mobile */
    .form-select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e73165' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.875rem center;
        background-size: 12px;
        padding-right: 2.5rem;
    }
    
    /* Small text adjustments */
    .form-group small {
        font-size: 0.7rem;
        display: block;
        margin-top: 0.25rem;
    }
    
    .form-security-note {
        font-size: 0.75rem;
        gap: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .form-security-note i,
    .form-security-note svg {
        width: 12px;
        height: 12px;
    }
}

/* Footer */
footer {
    background-color: black;
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Invert logo for dark footer */
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

.footer-heading {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-contact svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.copyright {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.legal-links a:hover {
    color: white;
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .nav-links, .desktop-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
}


/* Publicitary Sections Styles */

/* Social Proof Section */
.social-proof-section {
    background: rgba(231, 49, 101, 0.05);
    padding: 3rem 0;
    border-top: 1px solid rgba(231, 49, 101, 0.2);
    border-bottom: 1px solid rgba(231, 49, 101, 0.2);
}

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

@media (min-width: 768px) {
    .social-proof-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.proof-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.proof-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Problem/Solution Section */
.problem-solution-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .problem-solution-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.problem-box,
.solution-box {
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid;
}

.problem-box {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.solution-box {
    background: rgba(231, 49, 101, 0.1);
    border-color: rgba(231, 49, 101, 0.3);
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.problem-list li,
.solution-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Publicity Section */
.services-section-publicity {
    padding: 6rem 0;
}

.service-card-publicity {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(231, 49, 101, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-publicity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-publicity:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(231, 49, 101, 0.3);
}

.service-card-publicity:hover::before {
    opacity: 1;
}

.service-badge {
    display: inline-block;
    background: rgba(231, 49, 101, 0.2);
    color: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-benefit {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 1rem 0;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-result {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(231, 49, 101, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
    font-size: 0.95rem;
}

.service-cta {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-cta:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.services-cta-box {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(231, 49, 101, 0.15), rgba(168, 85, 247, 0.15));
    border: 2px solid rgba(231, 49, 101, 0.3);
    border-radius: 1.5rem;
    text-align: center;
}

.services-cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.services-cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Results Section */
.results-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.result-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 49, 101, 0.2);
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.result-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

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

.testimonial-box {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(231, 49, 101, 0.1), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(231, 49, 101, 0.3);
    border-radius: 1.5rem;
    position: relative;
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Why Us Publicity */
.why-us-section-publicity {
    padding: 6rem 0;
}

.reason-item-publicity {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.reason-item-publicity:hover {
    border-color: var(--primary);
    background: rgba(231, 49, 101, 0.05);
    transform: translateX(10px);
}

.reason-icon-publicity {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(231, 49, 101, 0.2);
    border: 2px solid var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.reason-item-publicity h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.reason-item-publicity p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA Publicity Section */
.cta-section-publicity {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

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

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 4rem;
    }
}

.cta-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefit {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 0.95rem;
}

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

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* References Publicity */
.references-section-publicity {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

/* Clients Section - Modern UX */
.clients-controls {
    margin: 3rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.clients-search {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.clients-search:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(231, 49, 101, 0.1);
}

.clients-search i {
    color: var(--text-muted);
    flex-shrink: 0;
}

.clients-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
}

.clients-search input::placeholder {
    color: var(--text-muted);
}

.clients-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(231, 49, 101, 0.3);
}

.clients-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.client-card-modern {
    padding: 1.25rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.client-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.client-card-modern.hidden {
    display: none;
}

.client-card-modern:hover {
    border-color: var(--primary);
    background: rgba(231, 49, 101, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(231, 49, 101, 0.25);
}

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

.client-name-modern {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.client-card-modern:hover .client-name-modern {
    color: var(--primary-light);
}

.client-separator {
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 0.75rem;
    border-radius: 2px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-card-modern:hover .client-separator {
    width: 50px;
    opacity: 1;
}

.no-services {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-style: italic;
    text-align: center;
    width: 100%;
}

.client-services-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: center;
    line-height: 1;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.client-services-modern::-webkit-scrollbar {
    width: 4px;
}

.client-services-modern::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.client-services-modern::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .client-card-modern {
        min-height: 90px;
        padding: 1rem 0.875rem;
    }
    
    .client-card-modern:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(231, 49, 101, 0.2);
    }
    
    .client-name-modern {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .client-separator {
        width: 25px;
        margin-bottom: 0.6rem;
    }
    
    .client-card-modern:hover .client-separator {
        width: 40px;
    }
    
    .client-services-modern {
        gap: 0.2rem;
    }
    
    .service-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

.service-badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(231, 49, 101, 0.2);
    border: 1px solid rgba(231, 49, 101, 0.4);
    border-radius: 8px;
    font-size: 0.65rem;
    color: var(--primary-light);
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    transition: all 0.2s ease;
    margin-bottom: -1px;
}

.client-card-modern:hover .service-badge {
    background: rgba(231, 49, 101, 0.3);
    border-color: var(--primary);
    transform: scale(1.05);
}

.service-badge-more {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    cursor: help;
    font-size: 0.65rem;
    padding: 2px 6px;
    flex-shrink: 0;
}

.service-badge-more:hover {
    background: rgba(231, 49, 101, 0.2);
    border-color: var(--primary);
    color: var(--primary-light);
}

.clients-footer {
    margin-top: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.clients-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .clients-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .clients-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
    
    .clients-search {
        max-width: 100%;
    }
}

/* Contact Publicity */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-header .section-title {
        font-size: 2rem;
    }
    
    .contact-header .section-desc {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

.contact-info-card {
    padding: 2rem;
    background: rgba(231, 49, 101, 0.1);
    border: 2px solid rgba(231, 49, 101, 0.3);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.contact-benefits li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-main);
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ========== Landing Page Team Building Rural (ambre-orange theme) ========== */
.lp-team-building {
    --lp-primary: #f59e0b;
    --lp-primary-dark: #d97706;
    --lp-primary-light: #fbbf24;
}
.lp-clients-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); max-width: 900px; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .lp-clients-grid { grid-template-columns: repeat(4, 1fr); max-width: 100%; } }
/* Contenu visible sans JS (pas de .visible sur la LP) */
.lp-team-building .fade-in {
    opacity: 1;
    transform: translateY(0);
}
.lp-team-building .text-gradient-lp,
.lp-team-building .text-gradient { color: var(--lp-primary); }
.lp-team-building .btn-primary.btn-lp,
.lp-team-building .btn-lp.btn-primary {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    color: #fff;
}
.lp-team-building .btn-primary.btn-lp:hover,
.lp-team-building .btn-lp.btn-primary:hover {
    background: linear-gradient(135deg, var(--lp-primary-light), var(--lp-primary));
    filter: brightness(1.05);
}
.logo-lp .logo-bw {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
footer .logo-bw {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-team-building .scroll-indicator-lp .scroll-arrow {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
    color: var(--lp-primary);
}
.lp-team-building .scroll-indicator-lp:hover .scroll-text { color: var(--lp-primary); }
.lp-team-building .lp-service-card .service-icon { color: var(--lp-primary); }
.lp-team-building .service-card-publicity:hover { box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25); }
.lp-team-building .service-card-publicity:hover::before { background: linear-gradient(90deg, var(--lp-primary), #ea580c); }
.lp-team-building .contact-icon-lp { color: var(--lp-primary); }

/* LP Experiences */
.lp-experiences { padding: 6rem 0; }
.lp-exp-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) {
    .lp-exp-grid.lp-exp-three-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .lp-exp-grid.lp-exp-three-cols { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.lp-exp-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.lp-exp-card:hover { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.lp-exp-image {
    position: relative;
    min-height: 200px;
    aspect-ratio: 16/10;
    background: var(--background);
}
.lp-exp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-exp-content { padding: 1.5rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.lp-exp-content h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--lp-primary); }
.lp-exp-duration { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.lp-exp-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; flex: 1; }
.lp-exp-bullets { list-style: none; padding: 0; margin: 0; }
.lp-exp-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.lp-exp-bullets li i, .lp-exp-bullets li svg { width: 16px; height: 16px; color: var(--lp-primary); flex-shrink: 0; }
.lp-exp-footer-note {
    text-align: center;
    max-width: 720px;
    margin: 3rem auto 0;
    padding: 1.5rem 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}
.lp-exp-footer-note strong { color: var(--lp-primary); }
@media (max-width: 768px) {
    .lp-exp-footer-note { margin-top: 2rem; padding-top: 1.5rem; font-size: 0.95rem; }
}

/* LP Avantages */
.lp-avantages { padding: 6rem 0; background: rgba(0,0,0,0.2); }
.lp-avantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .lp-avantages-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.lp-avantage-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.lp-avantage-card:hover { border-color: rgba(245, 158, 11, 0.3); }
.lp-avantage-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-primary);
}
.lp-avantage-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.lp-avantage-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* LP Form section (dark) */
.lp-form-section { background: #0f172a; }
.lp-form-section .contact-form-card { background: rgba(15, 23, 42, 0.8); border-color: rgba(255,255,255,0.08); }

/* Honeypot antispam - hide from users */
.form-group.honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}
.form-group.honeypot input { width: 0; height: 0; padding: 0; border: 0; }
