/* ========================================
   Schluss mit IT-Chaos – Design System
   ======================================== */

/* Lokal gehostete Inter-Schriftart (DSGVO-konform, kein externer Request) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('./fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('./fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- CSS Variables --- */
:root {
  --color-bg: #f8fafc;
  --color-bg-alt: #e0e8f4;
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #fafcff;
  --color-surface: #d4dded;
  --color-border: #bcc8db;
  --color-border-hover: #3b82f6;
  --color-text: #1e293b;
  --color-text-muted: #5a6882;
  --color-text-heading: #0f172a;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-accent-glow: rgba(37,99,235,0.12);
  --color-accent-light: #eef4ff;
  --color-success: #10b981;
  --color-danger: #ef4444;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.06);
  --shadow-lg: 0 8px 30px rgba(15,23,42,0.08);
  --shadow-glow: 0 0 16px rgba(37,99,235,0.12);
  --max-width: 1000px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  color: var(--color-text-heading);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 12px auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(37,99,235,0.25), var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-accent);
}
.btn-secondary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-hover);
  color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 500;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo:hover { color: #ffffff; }

.nav-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: var(--radius-md);
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-weight: 400;
  color: #94a3b8;
}
.nav-logo-text strong {
  color: #f1f5f9;
  font-weight: 700;
}

/* Nav menu (desktop) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}
.nav-link.active {
  color: #60a5fa;
  background: rgba(59,130,246,0.1);
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
  margin-left: 12px;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.nav-hamburger:hover { border-color: rgba(255,255,255,0.25); }
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #94a3b8;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



/* --- Hero --- */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #d6e4f7 0%, #e8f0fb 40%, #f0f5fd 100%);
}

.hero h1 { margin-bottom: 20px; position: relative; font-weight: 800; letter-spacing: -1px; }
.hero h1 .accent { color: var(--color-accent); }
.hero h2 { margin-bottom: 20px; position: relative; font-weight: 800; letter-spacing: -1px; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.15; }

/* Hero Badges */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge--blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.hero-badge--red {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.25);
}

/* Phishing-Hero Variante */
.hero--phishing {
  background: linear-gradient(160deg, #fbe3e3 0%, #fbeeee 40%, #f0f5fd 100%);
  padding: 100px 0 80px;
}

.accent-red { color: #dc2626; }

/* Danger / Rot Button */
.btn-danger {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.15);
}
.btn-danger:hover {
  background: #b91c1c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(220, 38, 38, 0.25), var(--shadow-md);
}

/* WhatsApp Button */
.btn.btn-whatsapp, .btn-whatsapp {
  background: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none !important;
}
.btn.btn-whatsapp:hover, .btn-whatsapp:hover {
  background: #1ebe5b !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3), var(--shadow-md);
}


.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  line-height: 1.6;
}

.hero-buttons { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 550;
  color: var(--color-text);
  margin-bottom: 20px;
  position: relative;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Sections --- */
.section {
  padding: 80px 0;
  position: relative;
}

.section-alt { background: var(--color-bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px; height: 44px;
  background: var(--color-accent-light);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 8px; font-size: 1.1rem; font-weight: 700; }
.card p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.6; }

/* --- Problem Section --- */
.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.problem-item:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.problem-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--color-accent-light);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.problem-item h4 { font-size: 1rem; margin-bottom: 4px; }
.problem-item p { color: var(--color-text-muted); font-size: 0.9rem; }

/* --- Steps --- */
.steps { max-width: 700px; margin: 0 auto 40px; }

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.step:last-child { border-bottom: none; }

.step-number {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--color-accent-light);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
}

.step h3 { margin-bottom: 6px; font-size: 1.1rem; }
.step p { color: var(--color-text-muted); font-size: 0.95rem; }

/* --- Target Audience --- */
.audience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.audience-item:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.audience-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  font-size: 0.85rem;
  font-weight: bold;
}

.audience-item span { font-weight: 500; font-size: 0.95rem; }

/* --- Difference Section --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.diff-card {
  padding: 28px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.diff-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.diff-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.diff-card p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.6; }

/* --- CTA Section --- */
.cta-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #c9d9f0 0%, #dde8f7 50%, #e8f0fb 100%);
}

.cta-section h2 { margin-bottom: 16px; position: relative; }
.cta-section p { color: var(--color-text-muted); max-width: 560px; margin: 0 auto 36px; position: relative; font-size: 1.05rem; }
.cta-section .btn { position: relative; }

/* --- Page 2: Info Section --- */
.info-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.info-box h2 { margin-bottom: 16px; }
.info-box p { color: var(--color-text-muted); margin-bottom: 12px; }
.info-box p:last-child { margin-bottom: 0; }

/* --- Form --- */
.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-group input::placeholder { color: var(--color-text-muted); }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition);
}
.checkbox-group:hover { border-color: var(--color-border-hover); }

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group span { font-size: 0.93rem; color: var(--color-text-muted); }

.form-submit { text-align: center; margin-top: 28px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.show { display: block; }
.form-success .check-circle {
  width: 64px; height: 64px;
  background: rgba(16,185,129,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  color: var(--color-success);
}
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--color-text-muted); }

/* --- Interview Section --- */
.interview-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  background: var(--color-bg-card);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.interview-box .gift-icon {
  width: 56px; height: 56px;
  background: rgba(16,185,129,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.interview-box h3 { margin-bottom: 12px; font-size: 1.3rem; }
.interview-box p { color: var(--color-text-muted); margin-bottom: 12px; }

/* --- FAQ --- */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--color-border-hover); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--color-bg-card);
  border: none;
  color: var(--color-text-heading);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--color-bg-card-hover); }

.faq-question .faq-icon {
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--color-text-muted);
}

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

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  padding: 40px 0;
  background: #e0e8f4;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { font-size: 0.85rem; color: var(--color-text-muted); }

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-accent); }

/* --- Section CTA container --- */
.section-cta { text-align: center; margin-top: 40px; }

/* --- Freebie Cards --- */
.freebie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.freebie-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.freebie-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.freebie-card--blue {
  border-top: 3px solid var(--color-accent);
}

.freebie-card--red {
  border-top: 3px solid #dc2626;
}

.freebie-icon {
  font-size: 2rem;
  line-height: 1;
}

.freebie-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  background: var(--color-accent-light);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  align-self: flex-start;
}

.freebie-card--red .freebie-badge {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.07);
  border-color: rgba(220, 38, 38, 0.2);
}

.freebie-card h3 {
  font-size: 1.25rem;
  margin: 0;
}

.freebie-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

.freebie-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.freebie-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}

.freebie-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-success);
}

.btn-phishing {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.15);
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}

.btn-phishing:hover {
  background: #b91c1c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(220, 38, 38, 0.25);
}

@media (max-width: 768px) {
  .freebie-grid { grid-template-columns: 1fr; }
  .freebie-card { padding: 28px 24px; }
}


/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 130px 0 72px; }
  .cards-grid { grid-template-columns: 1fr; }
  .problem-list { grid-template-columns: 1fr; }
  .audience-list { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .step { gap: 16px; }
  .form-wrapper { padding: 28px 20px; }
  .info-box, .interview-box { padding: 28px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .btn { padding: 14px 24px; font-size: 0.95rem; }
  
  /* Mobile Navigation */
  .nav-hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    display: none;
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
  }
  
  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  h1 { font-size: 1.8rem; }
}
