@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
  --bg:      #0F0F0F;
  --bg2:     #161616;
  --card:    #1C1C1C;
  --border:  #2A2A2A;
  --accent:  #F5C400;
  --accent2: #D4A800;
  --gray:    #3A3A3A;
  --white:   #FFFFFF;
  --text:    #DDDDDD;
  --muted:   #777777;
  --radius:  12px;
  --shadow:  0 4px 30px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,15,15,0.95); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: #999; text-decoration: none; font-size: 0.85rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #111;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── HERO ── */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 5rem 5%; position: relative; overflow: hidden;
  background-color: var(--bg);
  background-image:
    linear-gradient(100deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.72) 45%, rgba(15,15,15,0.4) 100%),
    url('images/hero-bg.jpg');
  background-repeat: no-repeat, no-repeat;
  background-position: left center, 78% center;
  background-size: cover, cover;
}
.hero-content { max-width: 640px; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,196,0,0.1); border: 1px solid rgba(245,196,0,0.25);
  color: var(--accent); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 1.25rem;
}
.hero h1 .hl { color: var(--accent); }
.hero-sub { font-size: 1rem; color: var(--muted); margin-bottom: 0.75rem; line-height: 1.7; }
.hero-tagline {
  font-size: 0.9rem; color: #888; font-style: italic;
  border-left: 3px solid var(--accent); padding-left: 1rem;
  margin-bottom: 2.2rem; line-height: 1.6;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  background: var(--accent); color: #111;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,196,0,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,196,0,0.45); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  border: 2px solid var(--border); transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--white); }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.1rem; }

/* ── SECTION COMMON ── */
section { padding: 5rem 5%; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700;
  line-height: 1.2; color: var(--white); margin-bottom: 0.75rem;
}
.section-sub { color: var(--muted); font-size: 0.95rem; max-width: 520px; line-height: 1.7; margin-bottom: 2.5rem; }
.bg2 { background: var(--bg2); }
.sec-divider { height: 1px; background: var(--border); margin: 0; }

/* ── GALLERY SLIDESHOW ── */
.gallery-slideshow { position: relative; width: 100%; max-width: 800px; aspect-ratio: 8/5; margin: 0 auto; border-radius: var(--radius); overflow: hidden; }
.gs-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.gs-slide.active { opacity: 1; }
.gs-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-slide-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 3rem 2rem 1.5rem; color: white; font-size: 0.95rem; font-weight: 600; }
.gs-slide-cat { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 0.3rem; }
.gs-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); border: none; color: white; font-size: 2rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center; transition: background 0.2s; line-height: 1; }
.gs-btn:hover { background: rgba(0,0,0,0.85); }
.gs-prev { left: 1rem; }
.gs-next { right: 1rem; }
.gs-dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.6rem; z-index: 2; }
.gs-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s; }
.gs-dot.active { background: var(--accent); }

/* ── PROJECTS ── */
.projects-intro {
  background: rgba(245,196,0,0.06); border: 1px solid rgba(245,196,0,0.15);
  border-radius: var(--radius); padding: 1.5rem 2rem; margin-bottom: 2.5rem;
  font-size: 0.9rem; color: var(--text); line-height: 1.7;
}
.projects-intro strong { color: var(--accent); }
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media(max-width:800px){ .proj-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .proj-grid { grid-template-columns: 1fr; } }
.proj-card { border-radius: var(--radius); overflow: hidden; transition: transform 0.3s; cursor: pointer; }
.proj-card:hover { transform: translateY(-5px); }
.proj-img { width: 100%; height: 400px; object-fit: cover; display: block; }
.proj-placeholder {
  width: 100%; height: 360px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 2.5rem;
}
.pp1 { background: linear-gradient(135deg,#1a1a2e,#e63946); }
.pp2 { background: linear-gradient(135deg,#1a1a2e,#2d9cdb); }
.pp3 { background: linear-gradient(135deg,#1a1a2e,#2dc653); }
.pp4 { background: linear-gradient(135deg,#1a1a2e,#a855f7); }
.pp5 { background: linear-gradient(135deg,#1a1a2e,#f59e0b); }
.pp6 { background: linear-gradient(135deg,#1a1a2e,#ec4899); }
.proj-info { background: var(--card); padding: 1rem 1.25rem; border-top: 2px solid var(--border); }
.proj-brand { font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.2rem; }
.proj-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.proj-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.proj-tag { font-size: 0.65rem; font-weight: 700; background: rgba(245,196,0,0.12); color: var(--accent); padding: 0.18rem 0.6rem; border-radius: 50px; }
.proj-behance { font-size: 0.7rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.proj-behance:hover { color: var(--accent); }

/* ── COURSE ── */
.course-card {
  background: var(--card); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow);
}
@media(max-width:800px){ .course-card { grid-template-columns: 1fr; } }
.course-visual {
  background: linear-gradient(135deg, #1C1C1C, #2A2200);
  padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border); position: relative; overflow: hidden;
}
.course-visual::before {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(245,196,0,0.08);
}
.course-badge {
  display: inline-block; background: var(--accent); color: #111;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 1.5rem; width: fit-content;
}
.course-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 1.25rem; }
.course-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cpill { background: rgba(255,255,255,0.07); color: #EEE; font-size: 1rem; font-weight: 700; padding: 0.55rem 1.3rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.15); }
.course-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.course-price small { font-size: 0.8rem; color: var(--muted); font-weight: 400; font-family: 'Inter', sans-serif; }
.course-body { padding: 2.5rem; }
.course-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.tools-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.tool-item { position: relative; padding-left: 1.1rem; font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.tool-item::before { content: ''; position: absolute; left: 0; top: 0.52em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.outcomes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 2rem; }
.outcome-item { background: rgba(245,196,0,0.06); border: 1px solid rgba(245,196,0,0.12); border-radius: 8px; padding: 0.6rem 0.8rem; font-size: 0.8rem; color: var(--text); }
.seats-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(239,68,68,0.1); color: #F87171; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 50px; margin-bottom: 1.25rem; }
.seats-dot { width: 6px; height: 6px; border-radius: 50%; background: #EF4444; animation: blink 1.2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── TOOLS ── */
.tools-visual { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1.25rem; }
.tool-v { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s, border-color 0.3s; text-align: center; padding-bottom: 1rem; }
.tool-v:hover { transform: translateY(-4px); border-color: var(--accent); }
.tool-v-top { height: 100px; display: flex; align-items: center; justify-content: center; }
.tool-logo {
  width: 58px; height: 58px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; font-family: 'Arial', sans-serif;
  letter-spacing: -1px; font-style: italic;
}
/* Adobe Illustrator — orange */
.tl-ai { background: linear-gradient(145deg, #FF9A00, #FF7200); color: #fff; }
/* Adobe Photoshop — dark navy + blue text */
.tl-ps { background: #001D34; color: #31A8FF; }
/* CorelDRAW — dark + CorelDRAW red */
.tl-cdr { background: #1A0000; color: #E3001B; font-style: normal; font-size: 0.85rem; letter-spacing: 0; }
/* Midjourney — pure black */
.tl-mj { background: #000; color: #fff; font-style: normal; }
/* Freepik — blue */
.tl-fp { background: #1273EB; color: #fff; font-style: normal; }
/* Google Gemini — dark with gradient text */
.tl-gem { background: #1A1A2E; color: #fff; font-style: normal; font-size: 0.75rem; letter-spacing: 0; text-align: center; line-height: 1.2; padding: 0.5rem; }
/* ChatGPT — OpenAI teal */
.tl-gpt { background: #0D9373; color: #fff; font-style: normal; font-size: 1.1rem; }
.tool-v-body { padding: 0.5rem 0.6rem 0; }
.tool-v-name { font-weight: 700; font-size: 0.82rem; color: var(--white); margin-bottom: 0.2rem; }
.tool-v-type { font-size: 0.65rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: start; }
@media(max-width:1000px){ .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-photo-wrap { position: sticky; top: 90px; }
@media(max-width:1000px){ .about-photo-wrap { position: static; top: auto; } }
.about-photo { width: 100%; border-radius: 16px; object-fit: cover; aspect-ratio: 3/4; display: block; }
.about-credential { background: var(--card); border-radius: 10px; padding: 1rem 1.25rem; margin-top: 1rem; border: 1px solid var(--border); display: flex; align-items: center; gap: 0.75rem; }
.cred-icon { font-size: 1.5rem; }
.cred-title { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.cred-sub { font-size: 0.72rem; color: var(--muted); }
.about-name { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
.about-role { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem; }
.about-bio { color: var(--text); line-height: 1.85; font-size: 0.95rem; margin-bottom: 2rem; }
.about-bio p { margin-bottom: 1rem; }
.about-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2rem; padding: 1.5rem; background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); }
.about-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.about-stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.online-box { background: rgba(245,196,0,0.05); border: 1px solid rgba(245,196,0,0.2); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.online-box h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--accent); margin-bottom: 0.75rem; }
.online-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.75rem; }
.of-item { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 0.7rem; font-size: 0.78rem; color: var(--text); }
.of-icon { font-size: 1.1rem; margin-bottom: 0.25rem; }
.of-title { font-weight: 700; color: var(--white); font-size: 0.8rem; }
/* ── ONLINE LEARNING FULL SECTION ── */
.online-features-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 0.5rem; }
@media(max-width:900px) { .online-features-full { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:500px) { .online-features-full { grid-template-columns: 1fr; } }
.of-item-full { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 1.5rem; text-align: center; transition: border-color 0.3s; }
.of-item-full:hover { border-color: rgba(245,196,0,0.35); }
.of-item-full .of-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.of-item-full .of-title { font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 0.4rem; }
.of-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── TESTIMONIALS SLIDER ── */
.testi-slider-wrap { overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s ease; }
.testi-card { min-width: 100%; background: var(--card); border-radius: var(--radius); padding: 2rem 2.5rem; border: 1px solid var(--border); transition: border-color 0.3s; box-sizing: border-box; }
.testi-card:hover { border-color: rgba(245,196,0,0.3); }
.testi-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.testi-btn { background: var(--card); border: 1px solid var(--border); color: var(--white); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; line-height: 1; }
.testi-btn:hover { border-color: var(--accent); color: var(--accent); }
.testi-dots { display: flex; gap: 0.5rem; align-items: center; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.2s; }
.testi-dot.active { background: var(--accent); }
.t-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 0.75rem; }
.t-quote { font-size: 0.875rem; color: var(--text); line-height: 1.7; margin-bottom: 1.25rem; }
.t-person { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.t-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; color: #111; background: var(--accent); flex-shrink: 0; }
.t-name { font-weight: 700; font-size: 0.88rem; color: var(--white); }
.t-location { font-size: 0.72rem; color: var(--muted); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media(max-width:900px){ .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon { width: 42px; height: 42px; background: rgba(245,196,0,0.1); border: 1px solid rgba(245,196,0,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.2rem; }
.contact-value { font-weight: 600; font-size: 0.95rem; color: var(--white); }
.wa-btn { display: inline-flex; align-items: center; gap: 0.75rem; background: #25D366; color: white; padding: 0.9rem 1.5rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem; text-decoration: none; margin-top: 1.5rem; transition: opacity 0.2s; }
.wa-btn:hover { opacity: 0.88; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: #999; display: block; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--card); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { background: var(--accent); color: #111; padding: 0.9rem; border-radius: 8px; border: none; font-size: 0.95rem; font-weight: 800; cursor: pointer; font-family: 'Inter', sans-serif; transition: opacity 0.2s; }
.form-submit:hover { opacity: 0.88; }

/* ── FOOTER ── */
footer { background: #FFFFFF; color: #333; padding: 3.5rem 5% 1.5rem; border-top: 1px solid #E0E0E0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
@media(max-width:800px){ .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo img { height: 94px; margin-bottom: 1rem; }
.footer-desc { font-size: 0.82rem; color: #666; line-height: 1.7; max-width: 300px; }
.footer-heading { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: #999; margin-bottom: 1rem; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: #555; font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.social-row { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; background: #F5F5F5; border: 1px solid #DDD; display: flex; align-items: center; justify-content: center; text-decoration: none; color: #555; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.social-ig:hover { background: #E1306C; border-color: #E1306C; color: #fff; }
.social-yt:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.social-be:hover { background: #1769FF; border-color: #1769FF; color: #fff; }
.footer-bottom { border-top: 1px solid #E0E0E0; padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: #888; flex-wrap: wrap; gap: 0.5rem; }

/* ── NAV LOGO TEXT ── */
.nav-logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--accent); text-decoration: none; letter-spacing: -0.3px; white-space: nowrap; display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-sub { font-size: 0.6rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }

/* ── CATALOG DOWNLOAD BUTTON ── */
.btn-catalog { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--accent); border: 1px solid var(--accent); padding: 0.65rem 1.5rem; border-radius: 8px; font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: background 0.2s, color 0.2s; margin-top: 0.75rem; }
.btn-catalog:hover { background: var(--accent); color: #111; }

/* Claude AI */
.tl-claude { background: linear-gradient(145deg, #D97757, #B5683F); color: #fff; font-style: normal; font-size: 0.7rem; font-weight: 700; letter-spacing: 0; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; background: #25D366; color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding-top: 4rem; padding-bottom: 3rem; }
  .hero-stats { gap: 1.5rem; }
}
