/* ==========================================
   CSS DESIGN SYSTEM FOR AUTUMN8
   🌸 SAKURA LIGHT THEME
   ========================================== */

/* Variables & Reset */
:root {
    --bg-primary: #fdf8fa;
    --bg-secondary: #f3eaf5;
    --bg-card: rgba(255, 255, 255, 0.72);
    --border-color: rgba(180, 140, 180, 0.18);
    --border-glow-violet: rgba(139, 92, 246, 0.25);
    --border-glow-pink: rgba(244, 114, 182, 0.25);
    
    /* Brand Colors — Sakura */
    --color-sakura: #f472b6;
    --color-rose: #e84393;
    --color-violet: #8b5cf6;
    --color-cyan: #06b6d4;
    --color-lavender: #c084fc;
    
    /* Text Colors */
    --text-dark: #1a1a2e;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* Fonts */
    --font-primary: 'Outfit', sans-serif;
    --font-mono: 'Space Grotesk', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-lavender);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-violet);
}

/* ==========================================
   DOODLE BACKGROUND PATTERN (SVG encoded)
   ========================================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.07;
    background-image:
        /* Flower doodle */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 10c2 6 8 8 8 8s-6 2-8 8c-2-6-8-8-8-8s6-2 8-8z' fill='none' stroke='%238b5cf6' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"),
        /* Circle doodle */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='12' fill='none' stroke='%23f472b6' stroke-width='1' stroke-dasharray='4 3'/%3E%3C/svg%3E"),
        /* Star doodle */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 20l4 12h12l-10 7 4 12-10-7-10 7 4-12-10-7h12z' fill='none' stroke='%2306b6d4' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
        /* Squiggle line */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40' viewBox='0 0 120 40'%3E%3Cpath d='M10 20c10-15 20 15 30 0s20 15 30 0s20 15 30 0' fill='none' stroke='%23c084fc' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E"),
        /* Small heart */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cpath d='M45 55s-15-10-15-20c0-5 4-9 8-9 3 0 5 2 7 4 2-2 4-4 7-4 4 0 8 4 8 9 0 10-15 20-15 20z' fill='none' stroke='%23f472b6' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E"),
        /* Arrow doodle */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'%3E%3Cpath d='M15 55l40-40m0 0l-12 4m12-4l-4 12' fill='none' stroke='%238b5cf6' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
        /* Spiral */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110' viewBox='0 0 110 110'%3E%3Cpath d='M55 40c8 0 15 7 15 15s-7 15-15 15-12-5-12-12 5-10 10-10 7 3 7 7' fill='none' stroke='%2306b6d4' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E"),
        /* Lightning bolt */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='80' viewBox='0 0 50 80'%3E%3Cpath d='M30 10l-8 25h10l-8 25' fill='none' stroke='%23e84393' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 200px 200px, 250px 250px, 300px 300px, 180px 180px, 220px 220px, 280px 280px, 320px 320px, 260px 260px;
    background-position: 0 0, 80px 120px, 160px 40px, 40px 200px, 200px 160px, 120px 280px, 0 320px, 240px 0;
}

/* Background Glow Effects */
.glow-bg {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    transition: var(--transition-smooth);
}

.glow-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--color-lavender) 0%, transparent 70%);
}

.glow-2 {
    top: 50%;
    right: -200px;
    background: radial-gradient(circle, var(--color-sakura) 0%, transparent 70%);
    opacity: 0.18;
}

.glow-3 {
    bottom: -100px;
    left: 20%;
    background: radial-gradient(circle, var(--color-cyan) 0%, transparent 70%);
    opacity: 0.15;
}

/* Interactive Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    transition-timing-function: cubic-bezier(0.1, 0.8, 0.3, 1);
    display: none;
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    background: rgba(253, 248, 250, 0.8);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.nav-logo, .footer-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: var(--font-mono);
    color: var(--text-dark);
}

.logo-text span {
    background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-sakura) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-violet), var(--color-sakura));
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-dark);
}

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

.btn-secondary-nav {
    border: 1px solid var(--border-color);
    background: rgba(139, 92, 246, 0.06);
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    color: var(--color-violet);
    font-weight: 600;
}

.btn-secondary-nav:hover {
    border-color: var(--color-violet);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
    background: rgba(139, 92, 246, 0.1);
}

.btn-secondary-nav::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

/* Typography Gradient */
.gradient-text {
    background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-rose) 50%, var(--color-sakura) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-rose) 60%, var(--color-sakura) 100%);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 114, 182, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.06);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: var(--color-lavender);
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-violet);
    margin-bottom: 24px;
    font-family: var(--font-mono);
}

.hero-badge i {
    animation: flash 1.5s infinite;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    max-width: 900px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.hero-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 800px;
}

.prop-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.06);
}

.prop-card:hover {
    border-color: var(--color-lavender);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.12);
}

.prop-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--color-violet);
    margin-bottom: 8px;
    font-family: var(--font-mono);
}

.prop-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Sections Styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    color: var(--color-rose);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: var(--font-mono);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
}

/* DNA Section */
.dna-section {
    padding: 100px 0;
}

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

.dna-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 32px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.05);
}

.dna-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-lavender);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.12);
}

.dna-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-violet);
    font-size: 24px;
    margin-bottom: 24px;
}

.dna-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.dna-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    position: relative;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 32px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-violet), var(--color-sakura));
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

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

.service-icon {
    font-size: 32px;
    color: var(--color-violet);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-tag-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.06);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-violet);
    font-family: var(--font-mono);
}

.service-card-featured {
    border-color: rgba(244, 114, 182, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(253, 240, 248, 0.8) 100%);
}

.service-card-featured:hover {
    border-color: var(--color-sakura);
}

.service-card-featured .service-icon {
    color: var(--color-rose);
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-sakura) 0%, var(--color-violet) 100%);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-mono);
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.3);
}

/* Work Section */
.work-section {
    padding: 100px 0;
}

.work-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.work-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.work-item.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.work-item.reverse .work-content {
    grid-column: 2;
}

.work-item.reverse .work-visual {
    grid-column: 1;
    grid-row: 1;
}

.work-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.work-type {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-violet);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: var(--font-mono);
}

.work-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.work-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.work-tags span {
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 2px solid var(--color-violet);
    padding-bottom: 4px;
    transition: var(--transition-fast);
}

.work-link:hover {
    color: var(--color-violet);
    border-color: var(--color-sakura);
    transform: translateX(5px);
}

/* Device Mockups */
.work-visual {
    position: relative;
    width: 100%;
}

.mockup-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.1);
    transition: var(--transition-smooth);
}

.mockup-iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 248, 250, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition-smooth);
}

.mockup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-dark);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.mockup-btn:hover {
    transform: scale(1.05);
    background: var(--color-violet);
    color: var(--text-white);
}

.instagram-mockup {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 16px;
    position: relative;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.1);
}

.ig-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0e6f0;
    margin-bottom: 12px;
}

.ig-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0d6e8;
}

.ig-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.ig-dots {
    color: #94a3b8;
    font-size: 10px;
}

.ig-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ig-avatar {
    font-size: 40px;
    color: #e0d6e8;
}

.ig-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
}

.ig-bio {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ig-bio strong {
    font-size: 14px;
    color: var(--text-dark);
}

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

.ig-grid-item {
    aspect-ratio: 1;
    border-radius: 4px;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(253, 240, 248, 0.85) 100%);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 64px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.08);
}

.contact-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.12) 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.contact-text {
    position: relative;
    z-index: 1;
}

.contact-tag {
    color: var(--color-violet);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
    font-family: var(--font-mono);
}

.contact-text h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.contact-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.whatsapp-group, .email-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-label, .email-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-label i {
    color: #25d366;
}

.email-label i {
    color: var(--color-violet);
}

.btn-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.phone-number {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 14px;
}

.btn-contact:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.9);
}

.wa-btn-1:hover {
    border-color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.15);
}

.wa-btn-2:hover {
    border-color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.15);
}

.email-btn:hover {
    border-color: var(--color-violet);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    background: #f8f0f5;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-rose);
    transform: translateX(4px);
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

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

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

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Scroll reveal initial states */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 50px;
    }
    .dna-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .work-item, .work-item.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .work-item.reverse .work-content {
        grid-column: 1;
    }
    .work-item.reverse .work-visual {
        grid-column: 1;
        grid-row: 2;
    }
    .contact-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    .mobile-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
        padding: 40px;
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-section {
        padding: 120px 0 60px;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .hero-props {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .dna-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
