/* =============================================
   HandwerkDigital — Global Stylesheet
   ============================================= */

/* 1. Variables & Reset
   ============================================= */
:root {
  --color-primary:      #1B3A5C;
  --color-primary-dark: #0F2542;
  --color-secondary:    #C8750A;
  --color-accent:       #E8920F;
  --color-bg:           #F8F7F4;
  --color-bg-alt:       #ECEAE6;
  --color-text:         #1A2030;
  --color-text-muted:   #55616F;
  --color-white:        #FFFFFF;
  --color-border:       #DDD9D3;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --space-1:  8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  --container:   1200px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;

  --shadow-card:  0 4px 24px rgba(27, 58, 92, 0.08);
  --shadow-hover: 0 8px 40px rgba(27, 58, 92, 0.15);
  --transition:   all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* 2. Typography
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 600; }

p  { color: var(--color-text-muted); }

.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: inline-block;
}

/* 3. Layout
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-5); }
}

section { padding: var(--space-6) 0; }

@media (min-width: 768px) {
  section { padding: var(--space-7) 0; }
}

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

.section-dark {
  background-color: var(--color-primary);
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--color-white); }
.section-dark p   { color: rgba(255,255,255,0.72); }

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto var(--space-6);
}
.section-header p {
  margin-top: var(--space-2);
  font-size: 18px;
  line-height: 1.75;
}

/* 4. Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}
.btn-primary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,117,10,0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}

/* 5. Navigation
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--color-white);
  box-shadow: 0 1px 0 rgba(27,58,92,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

@media (min-width: 768px) {
  .nav-inner { padding: 0 var(--space-5); }
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--color-secondary); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-4);
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover { color: var(--color-primary); }

.nav-links a.active {
  color: var(--color-primary);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-secondary);
  border-radius: 2px;
}

.nav-cta { display: none; }
@media (min-width: 900px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-1);
  background: none;
  border: none;
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  padding: var(--space-2) var(--space-3);
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}
.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-bg-alt);
  transition: color 0.2s;
}
.nav-mobile a:hover  { color: var(--color-secondary); }
.nav-mobile a.active { color: var(--color-primary); font-weight: 700; }

.nav-mobile .btn {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
  width: 100%;
  justify-content: center;
}

/* 6. Hero (Startseite)
   ============================================= */
.hero {
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding: var(--space-7) 0 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,117,10,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -8%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero .label { margin-bottom: var(--space-2); }

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 620px;
  margin-bottom: var(--space-5);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  margin-bottom: var(--space-6);
}

/* Trust bar inside hero */
.trust-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0;
  padding: var(--space-3) 0;
  background-color: rgba(255,255,255,0.04);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  justify-content: flex-start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
@media (min-width: 768px) {
  .trust-bar-inner { padding: 0 var(--space-5); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
}
.trust-item svg { color: var(--color-accent); flex-shrink: 0; }

/* 7. Page Hero (inner pages)
   ============================================= */
.page-hero {
  background-color: var(--color-primary);
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -5%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,117,10,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .label { margin-bottom: var(--space-2); }

.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  max-width: 580px;
  line-height: 1.7;
}

/* 8. Cards
   ============================================= */
.cards-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid transparent;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(27,58,92,0.06);
  transform: translateY(-4px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(200,117,10,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  color: var(--color-secondary);
}
.card h3 { margin-bottom: var(--space-1); color: var(--color-text); }
.card > p { font-size: 15px; margin-bottom: var(--space-3); }

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 9px; }

/* 9. Feature / Benefit Cards (why-us)
   ============================================= */
.feature-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-secondary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.feature-card h3 { margin-bottom: var(--space-1); }
.feature-card p  { font-size: 15px; }

/* 10. Feature List (checkmarks)
   ============================================= */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: 12px var(--space-3);
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-secondary);
  box-shadow: 0 2px 12px rgba(27,58,92,0.06);
}
.feature-item svg { color: var(--color-secondary); flex-shrink: 0; margin-top: 3px; }
.feature-item span { font-size: 15px; font-weight: 500; color: var(--color-text); }

/* 11. Two-column layout
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .two-col.reverse > *:first-child { order: 2; }
  .two-col.reverse > *:last-child  { order: 1; }
}

/* Service visual placeholder */
.service-visual {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(200,117,10,0.22) 0%, transparent 60%);
}
.service-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.service-visual svg {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,0.85);
}
.service-visual p {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-content > h2  { margin-bottom: var(--space-2); }
.service-content > .intro {
  font-size: 17px;
  margin-bottom: var(--space-4);
  line-height: 1.78;
}

/* 12. Steps (Process)
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}
.step-card h3 { margin-bottom: var(--space-1); }
.step-card p  { font-size: 15px; }

/* 13. Quote
   ============================================= */
.quote-block {
  padding: var(--space-4);
  border-left: 4px solid var(--color-secondary);
  background-color: var(--color-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-card);
  margin: var(--space-4) 0;
}
.quote-block blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 10px;
}
.quote-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* 14. Values
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.value-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(27,58,92,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}
.value-card h3 { margin-bottom: var(--space-1); }
.value-card p  { font-size: 15px; }

/* 15. Team
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(200,117,10,0.22) 0%, transparent 60%);
}
.team-initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.28);
  position: relative;
  z-index: 1;
}
.team-info { padding: var(--space-3); }
.team-info h3 { color: var(--color-text); margin-bottom: 4px; }
.team-role {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.team-info p { font-size: 15px; }

/* 16. CTA Section
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,117,10,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: var(--color-white); margin-bottom: var(--space-2); }
.cta-section p {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto var(--space-5);
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

/* 17. Contact
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.6fr 1fr; }
}

/* Form */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
}
.form-card h2 { margin-bottom: var(--space-4); }

.form-group { margin-bottom: var(--space-3); }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: border-color 0.2s, background-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%2355616F' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}
.form-checkbox span {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.form-checkbox span a { color: var(--color-primary); text-decoration: underline; }

/* Contact info */
.contact-info-wrap { display: flex; flex-direction: column; gap: var(--space-3); }

.contact-info-box {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
}
.contact-info-box h3 { margin-bottom: var(--space-3); font-size: 1.05rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(200,117,10,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-secondary);
}
.contact-detail-text { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-text small {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.contact-detail-text strong { color: var(--color-text); font-size: 15px; font-weight: 600; }

/* Next steps */
.next-steps-box {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
}
.next-steps-box h3 { margin-bottom: var(--space-3); font-size: 1.05rem; }

.next-step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-bg-alt);
}
.next-step-item:last-child { border-bottom: none; }
.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.next-step-item p { font-size: 14px; line-height: 1.55; padding-top: 4px; }

/* 18. Footer
   ============================================= */
.footer {
  background-color: var(--color-primary-dark);
  color: rgba(255,255,255,0.65);
  padding: var(--space-7) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.01em;
}
.footer-logo span { color: var(--color-secondary); }
.footer-brand p {
  font-size: 14px;
  margin-top: var(--space-2);
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.38);
  margin-bottom: var(--space-3);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--color-white); }

/* 19. Animations
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim { animation: fadeInUp 0.6s ease both; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.2s; }
.anim-d3 { animation-delay: 0.3s; }
.anim-d4 { animation-delay: 0.4s; }
.anim-d5 { animation-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 20. Utilities
   ============================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mb-0 { margin-bottom: 0 !important; }
