/* ===== VARIABLES ===== */
:root {
    --primary: #FF3366;
    --primary-dark: #E6295A;
    --primary-light: #FF6B8A;
    --secondary: #49021F;
    --accent: #FF3366;
    --text: #0a0a0f;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --background: #fafafa;
    --background-dark: #0a0a0f;
    --surface: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

/* ===== GRAIN OVERLAY ===== */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.4);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-glow {
    box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(255, 51, 102, 0.2); }
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 51, 102, 0.05);
}

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

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

.logo-dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(0, 0, 0, 0.03);
}

.nav-cta {
    background: var(--text) !important;
    color: white !important;
}

.nav-cta:hover {
    background: var(--primary) !important;
    transform: scale(1.02);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    transition: transform 0.3s ease-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #FF3366 0%, #FF6B8A 100%);
    top: -200px;
    right: -100px;
    opacity: 0.3;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    bottom: -100px;
    left: -100px;
    opacity: 0.2;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    top: 50%;
    left: 50%;
    opacity: 0.15;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-right: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--primary);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-description strong {
    color: var(--text);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.hero-visual {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.logo-decoration {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deco-circle {
    position: absolute;
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: 50%;
}

.circle-1 {
    width: 350px;
    height: 350px;
    animation: rotate 30s linear infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    border-style: dashed;
    animation: rotate 25s linear infinite reverse;
}

.circle-3 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 51, 102, 0.1);
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.3), transparent);
    height: 1px;
}

.line-1 {
    width: 120px;
    top: 50px;
    right: 20px;
    transform: rotate(-30deg);
}

.line-2 {
    width: 80px;
    bottom: 80px;
    left: 30px;
    transform: rotate(20deg);
}

.deco-dot {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 3s ease-in-out infinite;
}

.dot-1 {
    width: 8px;
    height: 8px;
    top: 60px;
    left: 80px;
    animation-delay: 0s;
}

.dot-2 {
    width: 6px;
    height: 6px;
    bottom: 100px;
    right: 60px;
    animation-delay: 1s;
}

.dot-3 {
    width: 10px;
    height: 10px;
    top: 150px;
    right: 40px;
    animation-delay: 2s;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.indesign-logo {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #FF3366 0%, #49021F 100%);
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 80px rgba(255, 51, 102, 0.4);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.indesign-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text);
    border-radius: 12px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 24px 0;
    background: var(--text);
    overflow: hidden;
}

.marquee {
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    opacity: 0.8;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
section {
    padding: 120px 0;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 51, 102, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #FF6B8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FORMATIONS SECTION ===== */
.formations {
    background: var(--background);
}

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

.formation-card {
    position: relative;
    background: white;
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.formation-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.formation-card:hover .card-hover-effect {
    opacity: 1;
}

.card-hover-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,51,102,0.03) 0%, rgba(255,51,102,0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.formation-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255,51,102,0.02) 0%, white 100%);
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 32px;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.formation-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255,51,102,0.1) 0%, rgba(255,51,102,0.05) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.formation-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.formation-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.formation-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.meta-item {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.meta-item strong {
    color: var(--text);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    background: var(--background-dark);
    color: white;
}

.portfolio .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.portfolio .section-header h2,
.portfolio .section-header p {
    color: white;
}

.portfolio .section-header p {
    opacity: 0.7;
}

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

.portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: none;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-image {
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

.portfolio-item.large .portfolio-image {
    min-height: 524px;
}

.portfolio-mockup {
    opacity: 0.8;
}

.magazine-mockup {
    width: 60%;
    height: 60%;
    display: flex;
    gap: 8px;
    transform: rotate(-5deg);
}

.magazine-mockup .mockup-page {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.poster-mockup {
    width: 50%;
    height: 70%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transform: rotate(5deg);
}

.brochure-mockup {
    width: 60%;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
}

.brochure-mockup .mockup-fold {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.report-mockup {
    width: 40%;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.report-mockup .mockup-pages {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.portfolio-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.portfolio-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-info h3 {
    color: white;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--background);
}

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

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.profile-image span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: white;
}

.floating-element {
    position: absolute;
    background: white;
    border-radius: var(--radius-sm);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.floating-element svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.floating-element span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.el-1 {
    top: 20px;
    right: 40px;
    animation-delay: 0s;
}

.el-2 {
    bottom: 60px;
    left: 20px;
    animation-delay: 0.5s;
}

.el-3 {
    bottom: 20px;
    right: 60px;
    animation-delay: 1s;
}

.experience-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    text-align: center;
    white-space: nowrap;
}

.exp-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.exp-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.about-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 24px;
}

.about-description {
    margin-bottom: 32px;
}

.about-description .lead {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 500;
}

.about-description p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.tools-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.tools-grid {
    display: flex;
    gap: 16px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.tool-icon.indesign {
    background: linear-gradient(135deg, #FF3366 0%, #49021F 100%);
}

.tool-icon.photoshop {
    background: linear-gradient(135deg, #31A8FF 0%, #001E36 100%);
}

.tool-icon.illustrator {
    background: linear-gradient(135deg, #FF9A00 0%, #330000 100%);
}

.tool-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    background: linear-gradient(180deg, var(--background) 0%, white 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 51, 102, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255,51,102,0.1) 0%, rgba(255,51,102,0.05) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--background);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255,51,102,0.1) 0%, rgba(255,51,102,0.05) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--background);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
    background: white;
}

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

/* ===== FOOTER ===== */
footer {
    background: var(--text);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    color: white;
    font-size: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
        margin-right: 0;
    }

    .hero-cta,
    .hero-stats {
        justify-content: center;
    }

    .logo-decoration {
        width: 300px;
        height: 300px;
    }

    .indesign-logo {
        width: 140px;
        height: 140px;
    }

    .indesign-logo span {
        font-size: 3.5rem;
    }

    .circle-1 { width: 260px; height: 260px; }
    .circle-2 { width: 220px; height: 220px; }
    .circle-3 { width: 300px; height: 300px; }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        order: 1;
    }

    .about-text {
        order: 2;
        text-align: center;
    }

    .tools-grid {
        justify-content: center;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

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

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

    .portfolio-item.large {
        grid-column: span 1;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .profile-image span {
        font-size: 3.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .marquee-content span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

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

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}
