 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
  :root {
    --ink: #f0e8cc;
    --bg: #080d1a;
    --bg2: #0c1220;
    --bg3: #101628;
    --accent: #c9a84c;
    --accent2: #e8d5a0;
    --muted: #6b7a9a;
    --card-border: #1a2240;
    --card-bg: #0c1220;
  }
 
  html { scroll-behavior: smooth; }
 
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
  }
 
  body::before {
    content: '';
    position: fixed;
    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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }
 
  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 5%;
    backdrop-filter: blur(16px);
    background: rgba(8,13,26,0.92);
    border-bottom: 1px solid var(--card-border);
  }
 
  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }
 
  nav ul { list-style: none; display: flex; gap: 2rem; }
  nav ul a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  nav ul a:hover { color: var(--ink); }
 
  .nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 999px !important;
    font-size: 0.85rem !important;
    transition: opacity 0.2s !important;
  }
  .nav-cta:hover { opacity: 0.85 !important; color: #fff !important; }
 
  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 5% 4rem;
    position: relative;
    overflow: hidden;
  }
 
  .hero-deco {
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.14), transparent 65%);
    pointer-events: none;
  }
  .hero-deco2 {
    position: absolute;
    bottom: -150px; left: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100,130,220,0.09), transparent 65%);
    pointer-events: none;
  }
 
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 2rem;
    width: fit-content;
    animation: fadeUp 0.6s ease both;
  }
  .hero-tag .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent2);
    animation: pulse 2s infinite;
  }
 
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }
 
  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    max-width: 900px;
    color: var(--ink);
    animation: fadeUp 0.7s 0.1s ease both;
  }
  h1 .highlight { color: var(--accent); font-style: italic; }
 
  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--muted);
    max-width: 520px;
    margin-top: 1.5rem;
    line-height: 1.75;
    font-weight: 300;
    animation: fadeUp 0.7s 0.2s ease both;
  }
 
  .hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
    animation: fadeUp 0.7s 0.25s ease both;
  }
 
  .hero-chip {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--card-border);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    color: var(--muted);
  }
 
  .hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
  }
 
  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
 
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    padding: 0.85rem 2rem;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn-secondary:hover { border-color: var(--muted); transform: translateY(-2px); }
 
  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
  }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
  }
  .stat-num span { color: var(--accent); }
  .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.1rem; }
 
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* SECTIONS */
  section { padding: 5rem 5%; position: relative; z-index: 1; }
 
  .section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    line-height: 1.15;
  }
 
  /* ABOUT */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }
  .about-text p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
  }
  .about-text p + p { margin-top: 1rem; }
  .about-text strong { color: var(--ink); font-weight: 500; }
 
  .skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }
  .skill-chip {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
  }
  .skill-chip:hover { border-color: var(--accent); transform: translateY(-3px); }
  .skill-chip-icon { font-size: 1.3rem; margin-bottom: 0.4rem; }
  .skill-chip-name { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--ink); }
  .skill-chip-sub { font-size: 0.72rem; color: var(--muted); margin-top: 0.1rem; }
 
  /* PROJECTS */
  .projects-section { background: var(--bg2); }
 
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
  }
  .project-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
  }
  .project-card:hover { transform: translateY(-6px); border-color: #1e2a50; }
  .project-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 20px 20px 0 0;
  }
  .project-card.green::before { background: var(--accent2); }
 
  .project-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    background: rgba(201,168,76,0.12);
    color: var(--accent);
    margin-bottom: 1rem;
  }
  .project-badge.green { background: rgba(232,213,160,0.1); color: var(--accent2); }
 
  .project-name { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: 0.5rem; }
  .project-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
 
  .project-review {
    margin-top: 1.4rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
    font-size: 0.83rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.6;
  }
  .project-review strong { display: block; font-style: normal; font-size: 0.76rem; color: var(--ink); margin-top: 0.5rem; font-weight: 500; }
  .stars { color: #e8a020; font-size: 0.82rem; margin-top: 0.4rem; }
 
  .tech-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1rem; }
  .tech-tag {
    font-size: 0.68rem; font-weight: 500;
    padding: 0.22rem 0.6rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: var(--muted);
    border: 1px solid var(--card-border);
  }
 
  /* SERVICES */
  .services-section { background: var(--bg3); }
 
  .services-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0;
  }
  .services-note {
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 300px;
    line-height: 1.6;
  }
 
  /* Category tabs */
  .cat-tabs {
    display: flex;
    gap: 0.6rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
  }
  .cat-tab {
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    background: transparent;
    color: var(--muted);
    font-size: 0.83rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .cat-tab.active, .cat-tab:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .cat-tab.active-design, .cat-tab.active-design:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: #fff;
  }
 
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
  }
 
  .service-card {
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 1.8rem 1.5rem;
    background: var(--card-bg);
    transition: transform 0.22s, border-color 0.22s;
    display: flex;
    flex-direction: column;
  }
  .service-card:hover { transform: translateY(-5px); border-color: #1e2a50; }
  .service-card.design-card:hover { border-color: var(--accent); }
 
  .service-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(201,168,76,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
  }
  .design-card .service-icon { background: rgba(201,168,76,0.12); }
 
  .service-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
  .service-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; font-weight: 300; flex: 1; }
 
  .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
  }
  .price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent);
  }
  .design-card .price-amount { color: var(--accent2); }
  .price-note {
    font-size: 0.7rem;
    color: var(--muted);
    text-align: right;
    line-height: 1.4;
  }
 
  /* DESIGN SECTION BANNER */
  .design-banner {
    background: linear-gradient(135deg, #080e22 0%, #0c1230 100%);
    border: 1px solid #1a2444;
    border-radius: 24px;
    padding: 3rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .design-banner-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 0.75rem;
  }
  .design-banner-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #f0e8cc;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }
  .design-banner-title span { color: var(--accent); font-style: italic; }
  .design-banner-sub {
    font-size: 0.92rem;
    color: #5a6a8a;
    line-height: 1.75;
    margin-top: 1rem;
    font-weight: 300;
  }
  .design-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  .design-tool {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #1e2a50;
    background: rgba(201,168,76,0.07);
    font-size: 0.75rem;
    color: var(--accent2);
    font-weight: 500;
  }
  .design-deliverables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }
  .deliverable {
    background: rgba(201,168,76,0.06);
    border: 1px solid #1a2444;
    border-radius: 14px;
    padding: 1.1rem;
    transition: border-color 0.2s, transform 0.2s;
  }
  .deliverable:hover { border-color: var(--accent); transform: translateY(-3px); }
  .deliverable-icon { font-size: 1.2rem; margin-bottom: 0.4rem; }
  .deliverable-name { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: #f0e8cc; }
  .deliverable-price { font-size: 0.75rem; color: var(--accent); font-weight: 500; margin-top: 0.2rem; }
 
  /* CONTACT */
  .contact-section {
    background: #050810;
    border-top: 1px solid var(--card-border);
  }
  .contact-section .section-label { color: var(--accent); }
  .contact-section .section-title { color: var(--ink); }
 
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }
  .contact-text { font-size: 1rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
  .contact-text strong { color: var(--accent); font-weight: 500; }
 
  .contact-links { display: flex; flex-direction: column; gap: 1rem; }
 
  .contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: var(--ink);
    transition: background 0.2s, transform 0.2s;
  }
  .contact-link:hover { background: rgba(255,255,255,0.07); transform: translateX(5px); }
 
  .contact-link-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .contact-link-icon.whatsapp { background: #25D366; }
  .contact-link-icon.phone { background: var(--accent); }
 
  .contact-link-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.1rem; }
  .contact-link-val { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; }
 
  /* FOOTER */
  footer {
    background: #040810;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #2a3560;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid var(--card-border);
  }
  footer a { color: #4a5a80; text-decoration: none; }
  footer a:hover { color: var(--accent); }
 
  /* FLOATING */
  .floating-cta {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-end;
  }
  .float-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.72rem 1.2rem;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.6); }
  .float-wa { background: #25D366; color: #fff; }
  .float-ph { background: #080d1a; color: var(--ink); border: 1px solid var(--card-border); }
 
  /* HERO LAYOUT + PHOTO FRAME */
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: center;
  }
  .hero-photo-col {
    animation: fadeUp 0.7s 0.15s ease both;
    flex-shrink: 0;
  }
  .photo-frame {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    overflow: hidden;
    position: relative;
  }
  .photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .photo-frame-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: center;
    line-height: 1.5;
    padding: 2rem;
    background: linear-gradient(160deg, #1a1a18 0%, #141412 100%);
  }
  .photo-frame-placeholder svg { opacity: 0.2; }
  .photo-frame-placeholder span { opacity: 0.4; font-size: 0.75rem; }
  /* Decorative corner accents */
  .photo-frame::before, .photo-frame::after {
    content: '';
    position: absolute;
    width: 24px; height: 24px;
    border-color: var(--accent);
    border-style: solid;
    z-index: 2;
    pointer-events: none;
  }
  .photo-frame::before { top: 10px; left: 10px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
  .photo-frame::after  { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }
 
  /* LIVE SITES GALLERY */
  .sites-section { background: var(--bg2); }
  .sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
  }
  .site-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
  }
  .site-card:hover { transform: translateY(-6px); border-color: #1e2a50; }
  .site-preview {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #080e22, #0c1220);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--card-border);
  }
  .site-preview iframe {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    transform-origin: top left;
    border: none;
    pointer-events: none;
    border-radius: 0;
  }
  .site-preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.8rem;
  }
  .site-preview-placeholder svg { opacity: 0.3; }
  .site-browser-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--card-border);
    position: absolute;
    top: 0; left: 0; right: 0;
  }
  .site-browser-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }
  .dot-red { background: #ff5f57; }
  .dot-yellow { background: #febc2e; }
  .dot-green { background: #28c840; }
  .site-info { padding: 1.2rem 1.4rem; }
  .site-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
  .site-url { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.8rem; font-family: monospace; }
  .site-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; font-weight: 300; }
  .site-actions { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
  .site-btn {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid var(--card-border);
    color: var(--muted);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }
  .site-btn:hover { border-color: var(--accent); color: var(--accent); }
  .site-btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
  .site-btn.primary:hover { opacity: 0.85; color: #fff; }
  .site-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(61,186,126,0.1);
    color: var(--accent2);
    margin-bottom: 0.6rem;
  }
  .site-status .dot-live {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent2);
    animation: pulse 2s infinite;
  }
 
  /* LINKEDIN FOOTER */
  .footer-social { display: flex; align-items: center; gap: 0.8rem; }
  .social-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-decoration: none;
  }
  .social-icon:hover { border-color: #0a66c2; color: #0a66c2; background: rgba(10,102,194,0.08); }
  .social-icon.wa:hover { border-color: #25D366; color: #25D366; background: rgba(37,211,102,0.08); }
  .social-icon.ph:hover { border-color: var(--accent); color: var(--accent); background: rgba(201,168,76,0.1); }
 
 
   
  /* WELCOME POPUP */
  #welcome-popup {
    position: fixed;
    bottom: -220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    width: min(480px, 92vw);
    background: #111111;
    border: 1px solid #d4a84355;
    border-radius: 20px;
    padding: 1.6rem 1.8rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,168,67,0.08);
    transition: bottom 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }
  #welcome-popup.show { bottom: 2rem; }
 
  .popup-avatar {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c9a84c22, #2a2a2a);
    border: 1px solid #d4a84344;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .popup-body { flex: 1; }
  .popup-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .popup-name .online-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4caf7d;
    display: inline-block;
    animation: pulse 2s infinite;
  }
  .popup-msg {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.6;
    font-weight: 300;
  }
  .popup-msg strong { color: #c9a84c; font-weight: 500; }
  .popup-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  .popup-btn {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
  }
  .popup-btn:hover { opacity: 0.85; transform: translateY(-1px); }
  .popup-btn.wa { background: #25D366; color: #fff; }
  .popup-btn.view { background: #c9a84c; color: #0a0a0a; }
  .popup-close {
    background: none;
    border: none;
    color: #444444;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    margin-left: 0.5rem;
    flex-shrink: 0;
    transition: color 0.2s;
  }
  /* MINI TOAST */
  #welcome-popup {
    position: fixed;
    bottom: -80px;
    right: 2rem;
    z-index: 300;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #d4a843;
    border-radius: 10px;
    padding: 0.75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    transition: bottom 0.45s cubic-bezier(0.34,1.56,0.64,1);
    max-width: 240px;
  }
  #welcome-popup.show { bottom: 5.5rem; }
  .toast-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4caf7d;
    flex-shrink: 0;
    animation: pulse 2s infinite;
  }
  .toast-msg {
    font-size: 0.8rem;
    color: #ffffff;
    line-height: 1.4;
    flex: 1;
  }
  .toast-msg span { color: #d4a843; font-weight: 500; }
  .toast-close {
    background: none; border: none;
    color: #444; font-size: 0.85rem;
    cursor: pointer; padding: 0; line-height: 1;
    flex-shrink: 0; transition: color 0.2s;
  }
  .toast-close:hover { color: #888; }

   /* Process */
    #process { background: var(--bg); }
    .process-wrap { max-width: 900px; margin: 0 auto; }
    .process-steps { margin-top: 3.5rem; position: relative; }
    .process-steps::before {
      content:''; position:absolute; left:22px; top:0; bottom:0; width:1px;
      background: linear-gradient(to bottom, var(--accent), var(--accent2), transparent);
    }
    .process-step {
      display: flex; gap: 2rem; margin-bottom: 3rem;
      opacity: 0; transform: translateX(-20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .process-step.visible { opacity: 1; transform: none; }
    .step-num {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--card); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--mono); font-size: 0.75rem; color: var(--accent);
      flex-shrink: 0; position: relative; z-index: 1;
    }
    .step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
    .step-content p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
 
 
  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav ul { display: none; }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-photo-col { width: 100%; max-width: 280px; }
    .photo-ring { width: 100px; height: 100px; }
    .about-grid, .contact-grid, .design-banner { grid-template-columns: 1fr; gap: 2rem; }
    .design-deliverables { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 2rem; }
  }