/* 
  CIPTA SUARA — Design System v9 (The Gold Standard)
*/

:root {
    /* Color Palette */
    --gold: #C9A84C;
    --gold-bright: #E5C163;
    --gold-dark: #8B6F35;
    --dark: #080808;
    --dark-pure: #000000;
    --dark-grey: #121212;
    --dark-accent: #1A1A1A;
    --light: #F0EDE6;
    --light-grey: #B8B4AB;
    --dim-grey: #6B6760;
    --red-alert: #D44F3A;

    /* Spacing */
    --p-gutter: 5vw;
    --p-vert: 8rem;

    /* Transitions */
    --t-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --t-fast: all 0.2s ease;
}

/* Base Styles */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-ring {
    position: fixed;
    width: 40px; height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    opacity: 0.4;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-tag, .nav-links a, .btn-primary, .btn-ghost, .tag, .stat-lbl, .scroll-indicator, .nav-cta, .form-feedback {
    font-family: 'DM Mono', monospace;
    font-weight: 500;
}

/* Navigation */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem var(--p-gutter);
    background: linear-gradient(to bottom, rgba(8,8,8,0.9) 0%, transparent 100%);
    backdrop-filter: blur(4px);
    transition: var(--t-smooth);
}

nav.scrolled {
    padding: 1.2rem var(--p-gutter);
    background: rgba(8,8,8,0.95);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--light);
    text-decoration: none;
}

.logo span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-grey);
    text-decoration: none;
    transition: var(--t-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: var(--t-smooth);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 0.7rem 1.6rem;
    text-decoration: none;
    transition: var(--t-smooth);
    border: 1px solid var(--gold);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    position: relative;
    overflow: hidden;
    background: var(--dark-pure);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--p-gutter);
    z-index: 10;
}

.hero-tag {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-tag::before {
    content: '';
    width: 3rem; height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(4rem, 9vw, 8.5rem);
    line-height: 0.9;
    margin-bottom: 2.5rem;
    color: var(--light);
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    max-width: 45ch;
    color: var(--light-grey);
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    transition: var(--t-smooth);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201,168,76,0.15);
}

.btn-ghost {
    color: var(--light);
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--t-smooth);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-right {
    position: relative;
    border-left: 1px solid rgba(201,168,76,0.15);
}

.hero-right-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(100%) contrast(120%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.soundwave-hero {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 0 4rem;
    z-index: 2;
}

.sw-bar {
    width: 3px;
    background: var(--gold);
    border-radius: 3px;
    opacity: 0.7;
    animation: swpulse 1.5s ease-in-out infinite alternate;
}

@keyframes swpulse {
    from { transform: scaleY(var(--min)); opacity: 0.3; }
    to { transform: scaleY(var(--max)); opacity: 0.8; }
}

.hero-stats {
    position: absolute;
    bottom: 5rem; left: -2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.stat-item {
    background: var(--dark-accent);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 1.5rem 2rem;
    min-width: 180px;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem; left: var(--p-gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold);
}

.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Sections Shared */
section {
    padding: var(--p-vert) var(--p-gutter);
    position: relative;
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-tag::before {
    content: '';
    width: 1.5rem; height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 3rem;
}

.section-title em {
    font-style: normal;
    color: var(--gold-dark);
}

/* Marquee */
.marquee-section {
    background: var(--gold);
    padding: 1.2rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    gap: 0;
}

.marquee-track span, .marquee-track a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    padding: 0 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.marquee-track .promo-item {
    font-weight: 700;
    transition: var(--t-fast);
}

.marquee-track .promo-item:hover {
    color: var(--dark-accent);
    text-decoration: underline !important;
}

.marquee-track .dot {
    opacity: 0.3;
    font-size: 0.8rem;
    padding: 0;
}

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

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

.about-visual {
    position: relative;
    height: 750px; /* Increased for that 'memanjang' look */
}

.about-img-wrapper {
    position: absolute;
    inset: 5rem 2rem;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.1);
}

.about-main-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--t-smooth);
}

.about-visual:hover .about-main-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-card {
    position: absolute;
    background: var(--dark-accent);
    padding: 2.5rem;
    border: 1px solid rgba(201,168,76,0.15);
    z-index: 5;
    transition: var(--t-smooth);
    width: 60%;
}

.about-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.about-card.c1 { top: 0; right: 0; }
.about-card.c2 { bottom: 0; left: 0; }

.about-card .icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.about-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--light-grey);
    font-weight: 300;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--light-grey);
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.feat-item strong {
    display: block;
    color: var(--gold);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.feat-item span {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 300;
}

/* Services */
.services-section {
    background: var(--dark-grey);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.services-intro {
    max-width: 35ch;
    color: var(--light-grey);
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.1);
}

.service-card {
    background: var(--dark-grey);
    padding: 4rem 3rem;
    transition: var(--t-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--gold);
    transition: var(--t-smooth);
}

.service-card:hover {
    background: var(--dark-accent);
}

.service-card:hover::after {
    width: 100%;
}

.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(201,168,76,0.08);
    line-height: 1;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--light-grey);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--gold);
}

/* Works Section */
.works-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

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

.work-item {
    background: var(--dark-grey);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--t-smooth);
    position: relative;
}

.work-item:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.work-thumb {
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--t-smooth);
}

.work-item:hover .work-thumb img {
    opacity: 0.8;
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    width: 60px; height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    z-index: 10;
    transition: var(--t-smooth);
    background: rgba(0,0,0,0.4);
}

.work-item:hover .play-icon {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.work-meta {
    padding: 1.5rem;
}

.work-type {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.work-meta h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--light);
}

/* Process Section */
.process-section {
    background: var(--dark-pure);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 6rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem; left: 0; right: 0;
    height: 1px;
    background: rgba(201,168,76,0.15);
}

.process-step {
    padding-right: 3rem;
}

.process-step .step-num {
    width: 5rem; height: 5rem;
    background: var(--dark-pure);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    transition: var(--t-smooth);
}

.process-step:hover .step-num {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.process-step h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--light-grey);
    font-weight: 300;
}

/* Contact Section (Ultra Slim Solid Form) */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
}

.contact-info {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-block strong {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.info-block p, .info-block a {
    font-size: 1.1rem;
    color: var(--light-grey);
    text-decoration: none;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

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

.form-group label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
}

/* FORCED GOLD FORM STYLES */
input, 
textarea, 
select,
select option,
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--gold) !important; 
    -webkit-text-fill-color: var(--gold) !important; 
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.95rem !important;
    padding: 0.5rem 0.8rem !important;
    line-height: normal !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

input::placeholder, textarea::placeholder {
    color: var(--gold) !important;
    opacity: 0.4;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1em !important;
    padding-right: 2.5rem !important;
}

select option {
    background-color: var(--dark-grey) !important;
    color: var(--gold) !important;
}

input:focus, textarea:focus, select:focus {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--gold) !important;
}

.form-textarea {
    min-height: 100px !important; /* Slim but functional */
    resize: vertical !important;
}

.btn-submit {
    background: var(--gold);
    color: var(--dark);
    padding: 0.8rem 1.8rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--t-smooth);
    cursor: none;
    margin-top: 0.2rem;
}

.btn-submit:hover {
    background: var(--gold-bright);
    transform: translateY(-1px);
}

.form-feedback {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--gold);
}

/* Footer */
footer {
    padding: 6rem var(--p-gutter) 3rem;
    background: var(--dark-pure);
}

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

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--t-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active { display: flex; }

.modal-content {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

.modal-content iframe {
    width: 100%; height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 3rem; right: 3rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--light);
    padding: 0.8rem 1.5rem;
    cursor: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.modal-close:hover { border-color: var(--gold); color: var(--gold); }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Responsive */
@media (max-width: 1200px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-stats { position: static; flex-direction: row; margin-top: 3rem; flex-wrap: wrap; }
    .about-section, .contact-section { grid-template-columns: 1fr; gap: 4rem; }
    .services-grid, .works-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
    .process-steps::before { display: none; }
}

@media (max-width: 768px) {
    nav { padding: 1.5rem 5%; }
    .nav-links { display: none; }
    section { padding: 5rem 5%; }
    .hero-title { font-size: 4rem; }
    .services-grid, .works-grid, .process-steps { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 3rem; align-items: flex-start; }
    .footer-links { flex-direction: column; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   AI FLOATING ACTION BUTTON (FAB)
   ========================================================================== */
.ai-fab {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 85px;
    height: 85px;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition: var(--t-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ai-fab:hover {
    transform: scale(1.1);
    border-color: var(--gold-bright);
    box-shadow: 0 15px 40px rgba(201,168,76,0.3);
}

.ai-fab-ring {
    position: absolute;
    inset: -1px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: fab-pulse 2.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
    pointer-events: none;
}

@keyframes fab-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.ai-fab-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    z-index: 2;
}

.ai-fab-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 2px;
    opacity: 0.8;
}

.ai-fab-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    :root {
        --container-padding: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .about-visual {
        height: 700px !important;
        position: relative !important;
        display: block !important;
        margin: 4rem 0 !important;
    }

    .about-img-wrapper {
        position: absolute !important;
        inset: 6rem 1rem !important;
        height: 400px !important;
        z-index: 1 !important;
    }

    .about-card {
        position: absolute !important;
        width: 85% !important;
        padding: 1.5rem !important;
        z-index: 5 !important;
    }

    .about-card.c1 {
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        bottom: auto !important;
    }

    .about-card.c2 {
        bottom: 0 !important;
        left: 0 !important;
        top: auto !important;
        right: auto !important;
    }

    .hero-content {
        z-index: 10;
        position: relative;
    }

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

    .works-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .works-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .works-header .btn-ghost {
        padding: 0;
        font-size: 0.9rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .marquee-text {
        font-size: 1.2rem;
        padding: 1.5rem 0;
    }

    .nav-links {
        display: none; /* Consider a burger menu if needed, but for now simplify */
    }

    .ai-fab {
        width: 60px;
        height: 60px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .ai-fab-title {
        font-size: 1.5rem;
    }

    .ai-fab-tag {
        font-size: 0.5rem;
        padding: 1px 4px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

.wa-contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-dim) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-contact-link:hover {
    color: var(--gold) !important;
}

.wa-contact-link svg {
    transition: transform 0.3s ease;
}

.wa-contact-link:hover svg {
    transform: scale(1.1);
}
