:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --text-primary: #f0ede6;
    --text-secondary: #8a8a8a;
    --text-muted: #555555;
    --accent: #14b8a6;
    --accent-dim: #0d9488;
    --accent-glow: rgba(20, 184, 166, 0.15);
    --border: #222222;
    --border-light: #2a2a2a;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg-primary); color: var(--text-primary); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
::selection { background: var(--accent); color: var(--bg-primary); }
a { color: inherit; text-decoration: none; }

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

/* NAV */
nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.25rem 3rem; display: flex; align-items: center; justify-content: space-between; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: rgba(10, 10, 10, 0.8); border-bottom: 1px solid var(--border); transition: all 0.3s ease; }
.nav-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: 0.1em; display: flex; align-items: center; gap: 0.5rem; }
.nav-logo .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); transition: color 0.3s ease; position: relative; }
.nav-links a:hover { color: var(--accent); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-family: var(--font-mono) !important; font-size: 0.75rem !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; background: var(--accent) !important; color: var(--bg-primary) !important; padding: 0.6rem 1.4rem !important; border-radius: 2px; font-weight: 600; transition: all 0.3s ease !important; }
.nav-cta:hover { background: #fff !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s ease; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 8rem 3rem 4rem; position: relative; overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(20, 184, 166, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 184, 166, 0.03) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%); }
.hero-glow { position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%); pointer-events: none; }
.hero-tag { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s; }
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; max-width: 900px; margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s; }
.hero-title .accent { color: var(--accent); position: relative; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); max-width: 520px; line-height: 1.7; margin-bottom: 3rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.6s; }
.hero-actions { display: flex; gap: 1.5rem; align-items: center; opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s; }
.btn-primary { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--accent); color: var(--bg-primary); padding: 1rem 2.5rem; border: none; border-radius: 2px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.75rem; }
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 40px rgba(20, 184, 166, 0.25); }
.btn-secondary { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); padding: 1rem 2rem; border: 1px solid var(--border-light); border-radius: 2px; cursor: pointer; background: transparent; transition: all 0.3s ease; }
.btn-secondary:hover { color: var(--text-primary); border-color: var(--text-secondary); }
.hero-stats { display: flex; gap: 4rem; margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--border); opacity: 0; animation: fadeUp 0.8s ease forwards 1s; }
.stat h3 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--text-primary); }
.stat h3 .accent { color: var(--accent); }
.stat p { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* MARQUEE */
.marquee-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.2rem 0; overflow: hidden; background: var(--bg-secondary); }
.marquee-track { display: flex; animation: scroll 25s linear infinite; width: max-content; }
.marquee-item { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; padding: 0 3rem; display: flex; align-items: center; gap: 3rem; }
.marquee-item .sep { color: var(--accent); font-size: 0.5rem; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
section { padding: 7rem 3rem; }
.section-tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--accent); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.section-desc { color: var(--text-secondary); max-width: 550px; font-size: 1.05rem; line-height: 1.7; }
.accent { color: var(--accent); }

/* SERVICES */
#services { background: var(--bg-primary); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem; border-radius: 4px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); opacity: 0; transition: opacity 0.4s ease; }
.service-card:hover { background: var(--bg-card-hover); border-color: var(--border-light); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-number { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 2rem; }
.service-icon { width: 48px; height: 48px; border: 1px solid var(--border-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.2rem; transition: all 0.3s ease; }
.service-card:hover .service-icon { border-color: var(--accent); background: var(--accent-glow); }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
.service-stack { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-stack span { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--border); padding: 0.3rem 0.7rem; border-radius: 2px; }
.service-learn-more { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em; color: var(--accent); background: none; border: none; cursor: pointer; padding: 0; margin-top: 1.25rem; transition: opacity 0.3s; }
.service-learn-more:hover { opacity: 0.7; }

/* PROCESS */
#process { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 4rem; }
.process-step { padding: 2.5rem; border-right: 1px solid var(--border); position: relative; }
.process-step:last-child { border-right: none; }
.process-step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 1.5rem; transition: color 0.3s ease; }
.process-step:hover .process-step-num { color: var(--accent); }
.process-step h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; }
.process-step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* WORK */
#work { background: var(--bg-primary); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 4rem; }
.work-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: all 0.4s ease; cursor: pointer; }
.work-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.work-preview { height: 260px; position: relative; overflow: hidden; }
.work-preview-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: var(--border); transition: all 0.4s ease; }
.work-card:hover .work-preview-inner { transform: scale(1.05); }
.work-preview-1 { background: linear-gradient(135deg, #0a1a18 0%, #0f2420 50%, #132e2a 100%); }
.work-preview-2 { background: linear-gradient(135deg, #0d1520 0%, #111d2a 50%, #162535 100%); }
.work-info { padding: 2rem 2.5rem; }
.work-info-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }
.work-info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.work-type { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); padding: 0.25rem 0.6rem; border-radius: 2px; white-space: nowrap; }
.work-info p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; }
.work-info a { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em; color: var(--accent); transition: opacity 0.3s; }
.work-info a:hover { opacity: 0.7; }

/* ABOUT */
#about { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-content .section-desc { margin-bottom: 2rem; }
.about-values { display: grid; gap: 1.5rem; margin-top: 2rem; }
.about-value { display: flex; gap: 1rem; align-items: flex-start; }
.about-value-marker { width: 8px; height: 8px; min-width: 8px; background: var(--accent); border-radius: 1px; margin-top: 0.5rem; }
.about-value h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.about-value p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.about-visual { position: relative; }
.about-visual-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 3rem; position: relative; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.about-stat-item { text-align: center; padding: 1.5rem; }
.about-stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; line-height: 1; margin-bottom: 0.5rem; }
.about-stat-num .accent { color: var(--accent); }
.about-stat-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.about-visual-tag { position: absolute; bottom: -1rem; right: 2rem; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; background: var(--accent); color: var(--bg-primary); padding: 0.5rem 1rem; border-radius: 2px; font-weight: 600; }

/* ===== FOUNDERS — big photo left, bio right ===== */
.founders-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.founders-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.founder-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.founder-card:last-child {
    margin-bottom: 0;
}

.founder-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.founder-photo {
    width: 150px;
    height: 150px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent);
    border-radius: 6px;
}

.founder-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.founder-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.founder-role {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.founder-linkedin {
    color: var(--text-muted);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.founder-card:hover .founder-linkedin {
    color: var(--accent);
}

.founder-bio {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
  /* Stack the main layout and prevent horizontal scrolling */
  .about-layout {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Force all child containers to respect screen width */
  .about-content, 
  .about-visual, 
  .founder-details, 
  .founder-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Stack the founder photo and text vertically on mobile */
  .founder-card {
    display: flex;
    flex-direction: column;
  }

  /* Ensure text wraps and doesn't push the container wider */
  p, h2, h3, h4, .founder-bio {
    word-wrap: break-word;
    white-space: normal;
  }
}

/* FAQ */
#faq { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-question { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; transition: color 0.3s ease; }
.faq-question:hover { color: var(--accent); }
.faq-toggle { font-family: var(--font-mono); font-size: 1.2rem; color: var(--text-muted); transition: all 0.3s ease; min-width: 20px; text-align: center; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer-inner { padding-bottom: 1.5rem; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-toggle { color: var(--accent); transform: rotate(45deg); }

/* CONTACT */
#contact { background: var(--bg-primary); position: relative; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; }
.contact-info-icon { width: 44px; height: 44px; min-width: 44px; border: 1px solid var(--border-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-info-text h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; }
.contact-info-text p { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-secondary); }
.contact-info-text a { color: var(--text-secondary); transition: color 0.3s ease; }
.contact-info-text a:hover { color: var(--accent); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--bg-primary); border: 1px solid var(--border); color: var(--text-primary); font-family: var(--font-body); font-size: 0.95rem; padding: 0.85rem 1rem; border-radius: 2px; outline: none; transition: border-color 0.3s ease; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-submit { width: 100%; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--accent); color: var(--bg-primary); padding: 1rem; border: none; border-radius: 2px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; }
.form-submit:hover { background: #fff; transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 4rem 3rem 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 3rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 2rem; }
.footer-brand { max-width: 350px; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.footer-links-group { display: flex; gap: 5rem; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.9rem; color: var(--text-secondary); transition: color 0.3s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.05em; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); font-family: var(--font-mono); font-size: 0.7rem; transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 2rem; }

/* WHATSAPP */
.whatsapp-fab { position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: none; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: all 0.3s ease; cursor: pointer; }
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

/* MODALS */
.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 10000; }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 4px; max-width: 560px; width: 90%; max-height: 80vh; overflow-y: auto; padding: 2.5rem; position: relative; }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: color 0.3s; line-height: 1; }
.modal-close:hover { color: var(--text-primary); }
.modal-box h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 1.25rem; }
.modal-box p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.modal-list { list-style: none; padding: 0; margin-bottom: 1.25rem; }
.modal-list li { color: var(--text-secondary); font-size: 0.9rem; padding: 0.4rem 0; padding-left: 1.25rem; position: relative; }
.modal-list li::before { content: ''; position: absolute; left: 0; top: 0.75rem; width: 6px; height: 6px; background: var(--accent); border-radius: 1px; }

/* SUCCESS MODAL */
.success-icon { width: 56px; height: 56px; margin: 0 auto 1.5rem; }
.checkmark { width: 56px; height: 56px; border-radius: 50%; stroke-width: 2; stroke: var(--accent); stroke-miterlimit: 10; animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both; }
.checkmark__circle { stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 2; stroke: var(--accent); fill: none; animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.checkmark__check { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; stroke: var(--bg-primary); animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; }
@keyframes stroke { 100% { stroke-dashoffset: 0; } }
@keyframes scale { 0%, 100% { transform: none; } 50% { transform: scale3d(1.1, 1.1, 1); } }
@keyframes fill { 100% { box-shadow: inset 0px 0px 0px 30px var(--accent); } }
.success-modal-box { text-align: center; }
.success-modal-box h3 { text-align: center; }
.success-summary { text-align: left; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 4px; padding: 1.25rem; margin: 1.25rem 0; }
.success-summary p { font-size: 0.85rem; margin-bottom: 0.3rem; }
.success-summary strong { color: var(--text-primary); }
.success-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.success-actions button { flex: 1; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.85rem 1rem; border-radius: 2px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; border: none; }
.btn-modal-close { background: var(--border-light); color: var(--text-secondary); }
.btn-modal-close:hover { background: var(--border); }
.btn-modal-another { background: var(--accent); color: var(--bg-primary); }
.btn-modal-another:hover { background: #fff; }
.loading-spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(10,10,10,0.2); border-radius: 50%; border-top-color: var(--bg-primary); animation: spin 0.8s linear infinite; margin-right: 0.5rem; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    section { padding: 5rem 2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(2) { border-right: none; }
    .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--border); }
    .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 7rem 1.5rem 3rem; }
    section { padding: 4rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step { border-right: none; border-bottom: 1px solid var(--border); }
    .process-step:last-child { border-bottom: none; }
    .work-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 2rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .footer-links-group { gap: 3rem; }

    .founder-card {
        grid-template-columns: 100px 1fr;
        gap: 1.25rem;
    }
    .founder-photo {
        width: 100px;
        height: 100px;
    }
    .founder-name { font-size: 1rem; }
    .founder-bio { font-size: 0.85rem; }

    .whatsapp-fab { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: 2rem;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-photo {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    .founder-header {
        justify-content: center;
        gap: 1rem;
    }
}