/*
Theme Name: Something About Sales
Theme URI: https://somethingabout.sale
Author: Mathieu Alexandre
Author URI: https://somethingabout.sale
Description: Custom WordPress theme for Something About Sales — B2B sales acceleration agency.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: something-about-sales
*/

/* ═══════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════ */
:root {
  --pink: #EC4899;
  --pink-dark: #DB2777;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --gradient: linear-gradient(90deg, var(--pink), var(--orange));
  --shadow-sm: 0 1px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --radius: 20px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Sora', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.sas-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.sas-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all .25s;
  text-decoration: none;
  line-height: 1;
}
.sas-btn-lg { padding: 16px 36px; font-size: 16px; }
.sas-btn-primary {
  background: linear-gradient(90deg, #F43F8A, #F97316);
  color: white !important;
  box-shadow: 0 4px 20px rgba(244,63,138,.35);
}
.sas-btn-primary:hover {
  box-shadow: 0 6px 28px rgba(244,63,138,.5);
  transform: translateY(-1px) scale(1.02);
  color: white !important;
}
.sas-btn-outline {
  border: 2px solid var(--gray-200);
  color: var(--pink) !important;
  background: transparent;
}
.sas-btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

/* ═══════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════ */
#sas-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
#sas-header .sas-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.sas-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sas-logo-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 15px;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}
.sas-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sas-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.sas-nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.sas-nav-links a:hover,
.sas-nav-links a.current-menu-item,
.sas-nav-links a.current_page_item {
  color: var(--pink);
  border-bottom-color: var(--pink);
}
.sas-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Hamburger */
.sas-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.sas-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .3s;
}
.sas-mobile-nav {
  display: none;
  position: fixed;
  top: 63px; left: 0; right: 0;
  z-index: 999;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  flex-direction: column;
}
.sas-mobile-nav.open { display: flex; }
.sas-mobile-nav a {
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-50);
  font-family: 'Sora', sans-serif;
}
.sas-mobile-nav a:hover { color: var(--pink); background: var(--gray-50); }
.sas-mobile-nav .sas-btn-primary {
  margin: 16px 24px 24px;
  border-radius: 50px;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#sas-footer {
  background: #fff;
  border-top: 1px solid var(--gray-100);
  padding: 64px 24px 40px;
}
.sas-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.sas-footer-brand p {
  font-size: .9rem;
  color: var(--gray-500);
  margin-top: 14px;
  max-width: 340px;
  line-height: 1.65;
}
.sas-footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}
.sas-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sas-footer-col ul li a {
  font-size: .9rem;
  color: var(--gray-500);
  transition: color .2s;
}
.sas-footer-col ul li a:hover { color: var(--pink); }
.sas-footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.sas-footer-bottom {
  border-top: 1px solid var(--gray-100);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sas-footer-bottom p { font-size: .85rem; color: var(--gray-400); }

/* ═══════════════════════════════════════════
   PAGE SECTIONS
═══════════════════════════════════════════ */
.sas-section { padding: 96px 24px; }
.sas-section-white { background: #fff; }
.sas-section-gray { background: var(--gray-50); }
.sas-section-dark { background: var(--gray-900); color: white; }

.sas-section-header { text-align: center; margin-bottom: 56px; }
.sas-section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.sas-section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* PAGE HERO */
.sas-page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(135deg, #FDF2F8, #FFF7ED);
}
.sas-page-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.sas-page-hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.sas-cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.sas-cards-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

.sas-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}
.sas-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sas-card-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #FDF2F8, #FFF7ED);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sas-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.sas-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

/* Service cards */
.sas-service-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.sas-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.sas-service-card:hover::before { transform: scaleX(1); }
.sas-service-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.09); transform: translateY(-3px); }
.sas-service-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gray-100);
  margin-bottom: 12px;
  line-height: 1;
}
.sas-service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.sas-service-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.sas-cta-banner {
  padding: 96px 24px;
  background: var(--gray-900);
  color: white;
  text-align: center;
}
.sas-cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
  color: white;
  letter-spacing: -0.02em;
}
.sas-cta-banner p {
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: #9CA3AF;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════════════════ */
.sas-hero {
  padding: 150px 24px 100px;
  text-align: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.sas-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(236,72,153,.06) 0%, transparent 70%);
  pointer-events: none;
}
.sas-hero-badge {
  display: inline-block;
  background: #FDF2F8;
  color: var(--pink);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: sasfadeDown .7s ease both;
}
.sas-hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--gray-900);
  margin-bottom: 22px;
  animation: sasfadeDown .8s .1s ease both;
  letter-spacing: -0.02em;
}
.sas-hero-subtitle {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-500);
  line-height: 1.7;
  animation: sasfadeDown .8s .2s ease both;
}
.sas-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: sasfadeUp .8s .3s ease both;
}
.sas-hero-actions .sas-btn { padding: 16px 34px; font-size: 16px; }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.sas-stats {
  padding: 80px 24px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: white;
  position: relative;
  overflow: hidden;
}
.sas-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.sas-stat-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: transform .3s, background .3s;
}
.sas-stat-card:hover { transform: scale(1.03); background: rgba(255,255,255,.22); }
.sas-stat-value {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: white;
}
.sas-stat-label {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.sas-stats-disc {
  text-align: center;
  margin-top: 36px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

/* ═══════════════════════════════════════════
   PHASES (APPROACH)
═══════════════════════════════════════════ */
.sas-phases { max-width: 760px; margin: 0 auto; }
.sas-phase {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-100);
}
.sas-phase:last-child { border-bottom: none; }
.sas-phase-dot {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(236,72,153,.3);
  margin-top: 4px;
}
.sas-phase-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.sas-phase-content p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; }

/* ═══════════════════════════════════════════
   DIENSTEN PAGE
═══════════════════════════════════════════ */
.sas-dienst {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--gray-100);
}
.sas-dienst:last-child { border-bottom: none; margin-bottom: 0; }
.sas-dienst.sas-flip .sas-dienst-text { order: 2; }
.sas-dienst.sas-flip .sas-dienst-img { order: 1; }
.sas-dienst-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FDF2F8, #FFF7ED);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sas-dienst-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--gray-900); margin-bottom: 14px; }
.sas-dienst-text p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; }
.sas-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sas-benefits li {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 500; color: var(--gray-700);
}
.sas-benefits li::before {
  content: '';
  display: block; width: 18px; height: 18px; flex-shrink: 0;
  background: var(--gradient);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.sas-dienst-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); height: 320px; }
.sas-dienst-img img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════
   FORMULAS PAGE
═══════════════════════════════════════════ */
.sas-formulas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-bottom: 56px; }
.sas-formula-card {
  background: #fff; border-radius: var(--radius);
  padding: 36px 32px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.sas-formula-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sas-formula-icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg,#FDF2F8,#FFF7ED); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.sas-formula-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--gray-900); margin-bottom: 22px; }
.sas-formula-section { margin-bottom: 22px; }
.sas-formula-label { display: flex; align-items: center; gap: 7px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-800); margin-bottom: 10px; }
.sas-formula-list { display: flex; flex-direction: column; gap: 8px; }
.sas-formula-list li { font-size: .9rem; color: var(--gray-600); line-height: 1.5; }
.sas-formula-list.fw li::before { content: '•'; color: var(--pink); margin-right: 8px; font-size: 10px; }
.sas-formula-list.wi li { display: flex; align-items: flex-start; gap: 8px; }
.sas-formula-cta { margin-top: auto; padding-top: 24px; }
.sas-formula-cta a { display: flex; justify-content: center; align-items: center; gap: 8px; width: 100%; padding: 14px; background: var(--gradient); color: white !important; border-radius: 12px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: .95rem; transition: opacity .2s, transform .2s; }
.sas-formula-cta a:hover { opacity: .9; transform: scale(1.01); }
.sas-disclaimer { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 16px; padding: 28px 32px; text-align: center; max-width: 720px; margin: 0 auto; }
.sas-disclaimer p { font-size: 1rem; font-weight: 500; color: var(--gray-700); line-height: 1.7; }

/* ═══════════════════════════════════════════
   OVER ONS PAGE
═══════════════════════════════════════════ */
.sas-founder-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: center; }
.sas-founder-img-wrap { position: relative; max-width: 340px; margin: 0 auto; }
.sas-founder-img-wrap::before { content: ''; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; background: var(--gradient); border-radius: var(--radius); transform: rotate(-3deg); z-index: 0; }
.sas-founder-img-wrap img { position: relative; z-index: 1; width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }
.sas-founder-text h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.sas-founder-role { font-size: 1.3rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; display: block; }
.sas-founder-text p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 14px; }
.sas-linkedin-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: 10px; border: 2px solid var(--gray-200); color: var(--gray-700) !important; font-weight: 600; font-size: .9rem; transition: all .2s; font-family: 'Sora', sans-serif; margin-top: 8px; }
.sas-linkedin-btn:hover { background: var(--gray-50); border-color: var(--gray-300); }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.sas-contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 56px; align-items: start; margin-top: 56px; }
.sas-contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
.sas-ci-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg,#FDF2F8,#FFF7ED); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sas-ci-icon svg { width: 24px; height: 24px; stroke: var(--pink); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sas-ci-text h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.sas-ci-text p { font-size: .9rem; color: var(--gray-500); margin-bottom: 6px; }
.sas-ci-text a { font-size: .95rem; font-weight: 600; color: var(--pink); }
.sas-ci-text a:hover { text-decoration: underline; }
.sas-form-wrap { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 8px; overflow: hidden; }

/* ═══════════════════════════════════════════
   TIMELINE (AANPAK PAGE)
═══════════════════════════════════════════ */
.sas-timeline { position: relative; padding-left: 40px; max-width: 800px; margin: 0 auto; }
.sas-timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.sas-tl-item { position: relative; margin-bottom: 56px; }
.sas-tl-dot { position: absolute; left: -51px; top: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(236,72,153,.3); }
.sas-tl-dot svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sas-tl-item h3 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.sas-tl-item .sas-desc { font-size: 1rem; color: var(--gray-600); margin-bottom: 18px; line-height: 1.7; }
.sas-checklist { display: flex; flex-direction: column; gap: 10px; }
.sas-checklist li { display: flex; align-items: center; gap: 10px; color: var(--gray-700); font-size: .95rem; }
.sas-checklist li::before {
  content: '';
  display: block; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--gradient);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.sas-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.sas-reveal.sas-in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes sasfadeDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
@keyframes sasfadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════
   SVG ICONS
═══════════════════════════════════════════ */
svg.sas-icon { width: 28px; height: 28px; stroke: var(--pink); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
svg.sas-icon-sm { width: 18px; height: 18px; stroke: var(--gray-400); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
svg.sas-arrow { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .sas-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sas-founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .sas-contact-grid { grid-template-columns: 1fr; }
  .sas-dienst { grid-template-columns: 1fr; gap: 40px; }
  .sas-dienst.sas-flip .sas-dienst-text,
  .sas-dienst.sas-flip .sas-dienst-img { order: unset; }
  .sas-dienst-img { height: 240px; }
}
@media (max-width: 768px) {
  .sas-nav-links, .sas-nav-actions { display: none; }
  .sas-hamburger { display: flex; }
  .sas-footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
}