/* ===========================
   MAXMIN — style.css v2.0
   Black & White + Gold
   =========================== */

:root {
    --black: #080808;
    --white: #ffffff;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dim: rgba(201,168,76,0.15);
    --gray: #f4f4f2;
    --gray-mid: #888;
    --text: #1a1a1a;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --header-h: 72px;
    --radius: 3px;
    --transition: 0.3s ease;
    --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

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

@media (hover: none) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, opacity 0.3s;
}

body:has(a:hover) .cursor { transform: translate(-50%,-50%) scale(2); background: var(--gold-light); }
body:has(button:hover) .cursor { transform: translate(-50%,-50%) scale(2); }

@media (hover: none) {
    .cursor, .cursor-follower { display: none; }
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--white);
    letter-spacing: 10px;
    animation: fadeUp 0.6s ease both;
}

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

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: loadBar 1.2s ease forwards;
}

@keyframes loadBar {
    from { width: 0; }
    to { width: 100%; }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

header.scrolled {
    background: rgba(8,8,8,0.96);
    box-shadow: 0 1px 0 rgba(201,168,76,0.2);
    backdrop-filter: blur(16px);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo img {
    height: 38px;
    width: auto;
    filter: invert(1);
    transition: opacity var(--transition);
}

.logo:hover img { opacity: 0.8; }

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

nav ul li a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 8px 14px;
    border-radius: 2px;
    transition: all var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 2px !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--black) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.overlay.active { display: block; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.7) 100%);
}

/* Grain texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    padding-top: var(--header-h);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: fadeUp 0.8s ease 0.2s both;
}

.tag-dot {
    width: 6px; height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 2s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 11vw, 9rem);
    line-height: 0.9;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line:nth-child(1) { animation: fadeUp 0.8s ease 0.4s both; }
.title-line:nth-child(2) { animation: fadeUp 0.8s ease 0.55s both; }
.title-line:nth-child(3) { animation: fadeUp 0.8s ease 0.7s both; }

.title-line.accent { color: var(--gold); }

.hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeUp 0.8s ease 0.85s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeUp 0.8s ease 1s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeUp 0.8s ease 1.1s both;
    padding-top: 24px;
    padding-bottom: 100px;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: fit-content;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Buttons */
.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 14px 28px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

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

.btn-secondary {
    color: rgba(255,255,255,0.8);
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s ease 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5));
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== TICKER ===== */
.ticker-wrap {
    background: var(--gold);
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
}

.ticker {
    display: inline-flex;
    animation: ticker 25s linear infinite;
    gap: 0;
}

.ticker span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--black);
    padding: 0 20px;
}

.ticker-dot {
    font-size: 0.7rem !important;
    padding: 0 4px !important;
    opacity: 0.5;
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION COMMON ===== */
.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    letter-spacing: 1px;
    line-height: 0.95;
    margin-bottom: 56px;
    color: var(--text);
}

.section-header { margin-bottom: 0; }
.section-header.center { text-align: center; }
.section-header .section-title { margin-bottom: 64px; }

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services .section-title { margin-bottom: 56px; }

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

.service-card {
    background: var(--black);
    color: var(--white);
    padding: 52px 40px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: attr(data-num);
    position: absolute;
    top: 20px; right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    transition: color var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { color: rgba(201,168,76,0.08); }
.service-card:hover { background: #0f0f0f; }

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: var(--white);
    line-height: 1;
}

.service-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.service-tags span {
    font-size: 0.7rem;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

/* ===== WHY US ===== */
.why-us {
    padding: 120px 0;
    background: var(--gray);
}

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

.why-us-text .section-title { margin-bottom: 20px; }

.why-us-text > p {
    font-size: 1rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 380px;
}

.why-cta { margin-top: 8px; }

.why-us-points {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-point {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.why-point:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.why-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(0,0,0,0.1);
    min-width: 60px;
    line-height: 1;
    transition: color var(--transition);
}

.why-point:hover .why-num { color: var(--gold); }

.why-content h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}

.why-content p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    padding: 120px 0;
    background: var(--white);
}

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

.portfolio-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all var(--transition);
}

.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.portfolio-img {
    position: relative;
    height: 240px;
    background: var(--black);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.portfolio-img img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img img { transform: scale(1.08); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201,168,76,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-link {
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.portfolio-info { padding: 28px; }

.portfolio-meta {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-info h3 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: var(--gray-mid);
    margin-bottom: 14px;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: var(--gray);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    color: #555;
    font-weight: 500;
}

/* CTA Card */
.portfolio-cta-card {
    background: var(--gold-dim) !important;
    border: 1px dashed rgba(201,168,76,0.4) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-cta-card:hover {
    background: rgba(201,168,76,0.12) !important;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(201,168,76,0.1) !important;
}

.portfolio-cta-inner {
    padding: 40px;
    text-align: center;
}

.portfolio-cta-icon {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 16px;
    line-height: 1;
}

.portfolio-cta-inner h3 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.portfolio-cta-inner p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ===== PROCESS ===== */
.process {
    padding: 120px 0;
    background: var(--black);
}

.process .section-label { color: var(--gold); }
.process .section-title { color: var(--white); }

.process-grid {
    display: flex;
    align-items: center;
    gap: 0;
}

.process-step {
    flex: 1;
    padding: 48px 36px;
    background: #0f0f0f;
    position: relative;
    transition: all var(--transition);
    text-align: center;
}

.process-step:hover { background: #141414; }

.process-num {
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(255,255,255,0.06);
    position: absolute;
    top: 20px; left: 24px;
    line-height: 1;
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.4;
    padding: 0 8px;
    flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing {
    padding: 120px 0;
    background: var(--gray);
}

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

.pricing-card {
    background: var(--white);
    padding: 48px 36px;
    position: relative;
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.1); }

.pricing-card.featured {
    background: var(--black);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover { transform: translateY(-12px); }

.pricing-badge {
    position: absolute;
    top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 0 0 20px 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-top { margin-bottom: 32px; }

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 8px;
}

.pricing-card.featured .pricing-name { color: var(--gold); }

.pricing-price {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-mid);
    margin-bottom: 10px;
}

.pricing-price strong {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--text);
    letter-spacing: 1px;
    line-height: 1;
    display: block;
}

.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-price strong { color: var(--white); }

.pricing-desc {
    font-size: 0.84rem;
    color: #888;
    line-height: 1.65;
}

.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.5); }

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.75);
}

.pricing-features li.yes::before {
    content: '✓';
    color: #4CAF50;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 16px;
}

.pricing-features li.no {
    opacity: 0.35;
}

.pricing-features li.no::before {
    content: '✗';
    color: #888;
    min-width: 16px;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 2px;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.btn-pricing:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-1px);
}

.pricing-card.featured .btn-pricing {
    background: var(--gold);
    color: var(--black);
}

.pricing-card.featured .btn-pricing:hover {
    background: var(--gold-light);
}

.pricing-footer {
    text-align: center;
    margin-top: 32px;
}

.pricing-footer p {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.7;
}

.pricing-footer a {
    color: var(--gold);
    font-weight: 600;
}

.pricing-footer a:hover { text-decoration: underline; }

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: var(--black);
}

.faq .section-label { color: var(--gold); }
.faq .section-title { color: var(--white); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.faq-item {
    background: #0f0f0f;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 24px 28px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.faq-q:hover { color: var(--gold); }

.faq-q span {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 300;
    min-width: 24px;
    text-align: center;
    transition: transform var(--transition);
    line-height: 1;
}

.faq-item.open .faq-q span { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
    padding: 0 28px 24px;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-left .section-title { margin-bottom: 16px; }

.contact-sub {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 360px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: all var(--transition);
}

.contact-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }

a.contact-item:hover { padding-left: 8px; }

.contact-icon {
    font-size: 1.3rem;
    min-width: 36px;
    padding-top: 2px;
}

.contact-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.92rem;
    color: #333;
    font-weight: 500;
}

/* Form */
.contact-form-wrap {
    background: var(--gray);
    padding: 48px;
    border-radius: var(--radius);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 28px;
    color: var(--text);
}

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

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    transition: border-color var(--transition);
    resize: none;
    color: var(--text);
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-note {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    padding: 64px 24px 32px;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img {
    height: 28px;
    width: auto;
    filter: invert(1);
    margin-bottom: 16px;
}

.footer-brand > p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 260px;
}

.footer-ssm {
    font-size: 0.72rem;
    color: var(--gold);
    opacity: 0.7;
    letter-spacing: 0.5px;
}

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

.footer-links h5 {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.footer-links a, .footer-links span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

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

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

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

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all var(--transition);
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(-8px); }

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--black);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(0);
    transition: all var(--transition);
    pointer-events: none;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--black);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .services-grid,
    .portfolio-grid,
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .process-grid { flex-direction: column; gap: 2px; }
    .process-arrow { transform: rotate(90deg); }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 62px; }

    .hamburger { display: flex; }

    nav {
        position: fixed;
        top: 0; right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--black);
        z-index: 1001;
        transition: right 0.4s ease;
        padding-top: 90px;
        border-left: 1px solid rgba(201,168,76,0.15);
    }

    nav.active { right: 0; }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 24px;
    }

    nav ul li a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        border-radius: 0;
        font-size: 1.05rem;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 16px;
        text-align: center;
        display: block;
        border-radius: 2px !important;
    }

    .hero-title { font-size: clamp(3.2rem, 14vw, 5.5rem); }
    .hero-stats { gap: 20px; }
    .hero-content { padding-top: calc(var(--header-h) + 20px); }
    .stat-num { font-size: 1.6rem; }

    .why-us-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    .why-us-text > p { max-width: 100%; }

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

    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }

    .contact-form-wrap { padding: 28px; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
    .section-title { font-size: 2.6rem !important; }
    .hero-stats { flex-wrap: wrap; gap: 16px; padding-bottom: 80px; }
    .stat-divider { display: none; }
    .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .process-step { padding: 36px 24px; }
    .hero-scroll { display: none; }
}
