/* ════════════════════════════════════════════════════════════════
   TRESTO.NL — Stylesheet
   ────────────────────────────────────────────────────────────────
   Table of Contents
   1. Design Tokens (CSS Custom Properties)
   2. Reset & Base
   3. Layout (Container, Background patterns)
   4. Typography Utilities
   5. Buttons
   6. Chips & Tags
   7. Navigation
   8. Mobile Menu
   9. Footer
   10. Animations & Scrollbar
   11. Card Base
   12. Page: Home (index.html)
   13. Page: Diensten (diensten.html)
   14. Page: Projecten (projecten.html)
   15. Page: Over Ons (over-ons.html)
   16. Page: Hosting & Support (hosting.html)
   17. Page: Contact (contact.html)
   18. Page: Tools & Tips (tools.html)
   ════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────────────── */

:root {
  /* Surface colors */
  --surface:                    #031425;
  --surface-dim:                #031425;
  --surface-bright:             #2a3b4c;
  --surface-container-lowest:   #000f1f;
  --surface-container-low:      #0b1d2d;
  --surface-container:          #0f2131;
  --surface-container-high:     #1a2b3c;
  --surface-container-highest:  #253648;
  --surface-variant:            #253648;

  /* Foreground colors */
  --on-surface:                 #d2e4fb;
  --on-surface-variant:         #dcc2ae;

  /* Outline */
  --outline:                    #a48c7a;
  --outline-variant:            #564334;

  /* Brand colors */
  --primary:                    #ffb97c;
  --on-primary:                 #4c2700;
  --primary-container:          #ff9100;
  --primary-fixed:              #ffdcc1;
  --secondary:                  #b7c8df;
  --secondary-container:        #3a4a5d;
  --tertiary:                   #c7c8c9;

  /* Effects */
  --glow-primary:               0 0 20px rgba(255, 185, 124, 0.25);
  --glow-primary-strong:        0 0 20px rgba(255, 185, 124, 0.3);
  --tech-shadow:                4px 4px 0 0 rgba(11, 29, 46, 0.5);
  --card-shadow-hover:          0 12px 40px rgba(0, 0, 0, 0.25);
  --card-shadow-hover-strong:   0 16px 50px rgba(0, 0, 0, 0.3);

  /* Border colors */
  --bevel-top:                  rgba(255, 255, 255, 0.08);
  --bevel-top-soft:             rgba(255, 255, 255, 0.05);
  --divider:                    rgba(86, 67, 52, 0.15);
  --divider-soft:               rgba(86, 67, 52, 0.2);
  --divider-strong:             rgba(86, 67, 52, 0.3);

  /* Typography */
  --font-display:               'Montserrat', sans-serif;
  --font-body:                  'Inter', sans-serif;
  --font-mono:                  'JetBrains Mono', monospace;

  /* Layout */
  --container-max:              1280px;
  --pad-mobile:                 16px;
  --pad-desktop:                80px;
  --nav-height:                 72px;

  /* Border radius */
  --radius-sm:                  4px;
  --radius-md:                  6px;
  --radius-lg:                  8px;
  --radius-xl:                  12px;
}


/* ─────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────── */

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

html { scroll-behavior: smooth; }

body {
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  position: relative;
  z-index: 1;
}

img,
svg { display: block; max-width: 100%; }

button { font-family: inherit; }


/* ─────────────────────────────────────────────────
   3. LAYOUT — Container & Backgrounds
   ───────────────────────────────────────────────── */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad-mobile);
  padding-right: var(--pad-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--pad-desktop);
    padding-right: var(--pad-desktop);
  }
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-dots::before,
.bg-dots::after {
  content: '';
  position: absolute;
  width: 33%;
  height: 33%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.bg-dots::before { top: 0; right: 0; }
.bg-dots::after  { bottom: 0; left: 0; }


/* ─────────────────────────────────────────────────
   4. TYPOGRAPHY UTILITIES & EFFECTS
   ───────────────────────────────────────────────── */

.font-mono       { font-family: var(--font-mono); }
.text-primary    { color: var(--primary); }
.text-variant    { color: var(--on-surface-variant); }
.bevel-edge      { border-top: 1px solid var(--bevel-top); }
.tech-shadow     { box-shadow: var(--tech-shadow); }

.pattern-bg {
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
}


/* ─────────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────────── */

.btn-primary,
.btn-outline {
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 600;
  padding: 10px 24px;
  border: none;
}

.btn-primary:hover {
  background: var(--primary-container);
  box-shadow: var(--glow-primary-strong);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 500;
  padding: 12px 24px;
}

.btn-outline:hover {
  background: rgba(255, 185, 124, 0.08);
  box-shadow: 0 0 16px rgba(255, 185, 124, 0.15);
}

.btn-mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}


/* ─────────────────────────────────────────────────
   6. CHIPS & TAGS
   ───────────────────────────────────────────────── */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-variant);
  padding: 4px 14px;
  border-radius: 999px;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.chip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}


/* ─────────────────────────────────────────────────
   7. NAVIGATION
   ───────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 20, 37, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider-strong);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .logo-icon {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  transform: rotate(45deg);
  border-radius: 2px;
}

.nav-links {
  display: none;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--on-surface-variant);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all 0.25s;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(255, 185, 124, 0.08);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
  border-radius: 0;
  padding-bottom: 6px;
}

.nav-cta { display: none; }

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 4px;
}

.hamburger .material-symbols-outlined { font-size: 32px; }

@media (min-width: 768px) {
  .nav-links  { display: flex; }
  .nav-cta    { display: inline-flex; }
  .hamburger  { display: none; }
}


/* ─────────────────────────────────────────────────
   8. MOBILE MENU
   ───────────────────────────────────────────────── */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 20, 37, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--on-surface);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  transition: all 0.25s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
  background: rgba(255, 185, 124, 0.08);
}

.mobile-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--on-surface);
  cursor: pointer;
  padding: 4px;
}

.mobile-menu .close-btn .material-symbols-outlined { font-size: 36px; }

.mobile-menu .mobile-cta {
  margin-top: 24px;
  padding: 14px 40px;
  font-size: 17px;
}


/* ─────────────────────────────────────────────────
   9. FOOTER
   ───────────────────────────────────────────────── */

footer {
  background: var(--surface-container-lowest);
  border-top: 1px solid var(--divider);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand { grid-column: 1 / -1; }

.footer-brand .logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .logo .logo-icon {
  width: 16px;
  height: 16px;
  border: 2px solid var(--primary);
  transform: rotate(45deg);
  border-radius: 2px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--on-surface-variant);
  line-height: 1.55;
  max-width: 260px;
}

.footer-col h3 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--on-surface);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--on-surface-variant);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(86, 67, 52, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--on-surface-variant);
}

@media (min-width: 768px) {
  .footer-grid    { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
  .footer-brand   { grid-column: auto; }
}


/* ─────────────────────────────────────────────────
   10. ANIMATIONS & SCROLLBAR
   ───────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

::-webkit-scrollbar           { width: 8px; }
::-webkit-scrollbar-track     { background: var(--surface); }
::-webkit-scrollbar-thumb     { background: var(--surface-container-highest); border-radius: var(--radius-sm); }
::-webkit-scrollbar-thumb:hover { background: var(--outline); }


/* ─────────────────────────────────────────────────
   11. CARD BASE
   ───────────────────────────────────────────────── */

.card {
  background: var(--surface-container-high);
  border-radius: var(--radius-xl);
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover-strong);
}

@media (min-width: 768px) {
  .card { padding: 36px; }
}


/* ════════════════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES
   ════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────
   12. PAGE: HOME (index.html)
   ───────────────────────────────────────────────── */

.hero-home {
  text-align: center;
  padding: 80px 0 120px;
  position: relative;
}

.hero-home .chip { margin-bottom: 32px; }

.hero-home h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 24px;
  max-width: 900px;
}

.hero-home h1 .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-home h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-home p {
  color: var(--on-surface-variant);
  font-size: 16px;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.expertise-section { padding-bottom: 80px; }

.expertise-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 8px;
}

.expertise-section > p {
  color: var(--on-surface-variant);
  margin-bottom: 32px;
  font-size: 15px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.expertise-card {
  background: var(--surface-container);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-top: 1px solid var(--bevel-top-soft);
  transition: transform 0.3s, background 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}

.expertise-card:hover {
  transform: translateY(-4px);
  background: var(--surface-container-high);
}

.expertise-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-variant);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.expertise-icon .material-symbols-outlined { font-size: 22px; }

.expertise-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.expertise-card p {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .hero-home              { padding: 120px 0 160px; }
  .hero-home h1           { font-size: 64px; }
  .hero-home p            { font-size: 18px; }
  .expertise-section      { padding-bottom: 120px; }
  .expertise-section h2   { font-size: 36px; }
  .expertise-grid         { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}


/* ─────────────────────────────────────────────────
   13. PAGE: DIENSTEN (diensten.html)
   ───────────────────────────────────────────────── */

.hero-services {
  padding: 64px 0 56px;
  position: relative;
}

.hero-services .chip { margin-bottom: 24px; }

.hero-services h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-services h1 .accent { color: var(--primary); }

.hero-services p {
  color: var(--on-surface-variant);
  font-size: 16px;
  line-height: 1.65;
  max-width: 580px;
}

.hero-services .hero-decoration { display: none; }

@media (min-width: 768px) {
  .hero-services {
    padding: 96px 0 80px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: space-between;
  }
  .hero-services h1           { font-size: 56px; }
  .hero-services p            { font-size: 17px; }
  .hero-services .hero-text   { flex: 1; }
  .hero-services .hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    color: var(--surface-container-highest);
    flex-shrink: 0;
  }
  .hero-services .hero-decoration .material-symbols-outlined { font-size: 140px; }
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 80px;
}

.bento-item {
  background: var(--surface-container);
  border-radius: var(--radius-xl);
  padding: 28px;
  border-top: 1px solid var(--bevel-top-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.bento-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-variant);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
}

.bento-icon .material-symbols-outlined { font-size: 22px; }

.bento-item h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 14px;
}

.bento-item .lead {
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bento-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.bento-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.bento-features .icon {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.bento-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--surface-variant);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
}

.tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    padding-bottom: 120px;
  }
  .bento-grid .bento-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
  .bento-grid .bento-item:nth-child(2) { grid-column: 2 / 4; grid-row: 1 / 2; }
  .bento-grid .bento-item:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .bento-grid .bento-item:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .bento-grid .bento-item:nth-child(5) { grid-column: 3 / 4; grid-row: 2 / 3; }
  .bento-item { padding: 36px; }
}


/* ─────────────────────────────────────────────────
   14. PAGE: PROJECTEN (projecten.html)
   ───────────────────────────────────────────────── */

.hero-projects { padding: 64px 0 56px; }

.hero-projects .chip { margin-bottom: 24px; }

.hero-projects h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-projects h1 .accent { color: var(--primary); }

.hero-projects p {
  color: var(--on-surface-variant);
  font-size: 16px;
  line-height: 1.65;
  max-width: 620px;
}

/* Filter chips */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--outline-variant);
  color: var(--on-surface-variant);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-chip.active {
  background: rgba(255, 185, 124, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.filter-chip .material-symbols-outlined { font-size: 16px; }

/* Project grid */
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 80px;
}

.project-card {
  background: var(--surface-container);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border-top: 1px solid var(--bevel-top-soft);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover-strong);
}

.project-image {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1f2e 0%, #1a3344 100%);
}

.project-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255, 185, 124, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 145, 0, 0.08) 0%, transparent 50%);
}

.project-image .chart-mockup {
  position: absolute;
  inset: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  opacity: 0.7;
}

.project-image .bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary-container), transparent);
  border-radius: 2px 2px 0 0;
}

.project-image .phone-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  width: 100px;
  height: 180px;
  background: #1a2a3a;
  border: 2px solid #2a3a4a;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.project-image .phone-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background: #0a1a2a;
  border-radius: 2px;
}

.project-image .phone-mockup::after {
  content: '';
  position: absolute;
  inset: 20px 10px 10px;
  background: linear-gradient(135deg, rgba(255, 185, 124, 0.2) 0%, rgba(255, 185, 124, 0.05) 100%);
  border-radius: var(--radius-sm);
}

.project-image-tags {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.project-image-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: rgba(15, 33, 49, 0.85);
  backdrop-filter: blur(8px);
  color: var(--on-surface);
}

.project-image-tag.primary {
  background: var(--primary);
  color: var(--on-primary);
}

.project-body { padding: 24px; }

.project-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
}

.project-body p {
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.project-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.project-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-stat-icon {
  width: 32px;
  height: 32px;
  background: var(--surface-variant);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.project-stat-icon .material-symbols-outlined { font-size: 18px; }

.project-stat-text {
  display: flex;
  flex-direction: column;
}

.project-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

.project-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  letter-spacing: 0.08em;
}

/* Compact variant */
.project-card.compact .project-image {
  height: 200px;
  background: linear-gradient(135deg, #0a1428 0%, #1a2438 100%);
}

.project-card.compact .award {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
}

.project-card.compact .award .material-symbols-outlined { font-size: 18px; }

@media (min-width: 768px) {
  .hero-projects     { padding: 96px 0 80px; }
  .hero-projects h1  { font-size: 64px; }
  .hero-projects p   { font-size: 18px; }
  .project-body      { padding: 32px; }
}

@media (min-width: 900px) {
  .project-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    padding-bottom: 120px;
  }
}


/* ─────────────────────────────────────────────────
   15. PAGE: OVER ONS (over-ons.html)
   ───────────────────────────────────────────────── */

.mission-hero {
  padding: 64px 0 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.mission-hero .chip { margin-bottom: 24px; }

.mission-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.mission-hero h1 .accent { color: var(--primary); }

.mission-hero p {
  color: var(--on-surface-variant);
  font-size: 16px;
  line-height: 1.65;
  max-width: 520px;
}

.globe-card {
  position: relative;
  background: linear-gradient(135deg, #061a2e 0%, #0c2236 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-top: 1px solid var(--bevel-top-soft);
}

.globe-card svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.globe-card .code-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--surface-container);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 16px;
  z-index: 2;
}

/* Team grid */
.team-section { padding-bottom: 80px; }

.team-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 8px;
}

.team-section .section-sub {
  color: var(--on-surface-variant);
  margin-bottom: 32px;
  font-size: 15px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.team-card {
  background: var(--surface-container);
  border-radius: var(--radius-xl);
  padding: 28px;
  border-top: 1px solid var(--bevel-top-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.team-card.with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.team-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-variant);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.team-icon .material-symbols-outlined { font-size: 22px; }

.team-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--on-surface-variant);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--surface-variant);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.video-mockup {
  background: linear-gradient(135deg, #0a1828 0%, #1a2638 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--bevel-top-soft);
}

.video-mockup::before {
  content: '';
  position: absolute;
  inset: 20% 25%;
  background: linear-gradient(135deg, rgba(255, 185, 124, 0.1), rgba(255, 185, 124, 0.02));
  border: 1px solid rgba(255, 185, 124, 0.2);
  border-radius: var(--radius-sm);
}

.video-mockup::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.6;
}

/* Why-us section */
.why-section { padding-bottom: 80px; }

.why-section h2 {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-container-high);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.why-icon .material-symbols-outlined { font-size: 28px; }

.why-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.why-item p {
  color: var(--on-surface-variant);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

@media (min-width: 600px) {
  .team-card.with-image { grid-template-columns: 1fr 200px; }
}

@media (min-width: 768px) {
  .mission-hero      { padding: 96px 0 120px; }
  .mission-hero h1   { font-size: 56px; }
  .mission-hero p    { font-size: 17px; }
  .team-section      { padding-bottom: 120px; }
  .team-section h2   { font-size: 36px; }
  .team-grid         { grid-template-columns: 1fr 1fr; gap: 24px; }
  .team-card         { padding: 36px; }
  .why-section       { padding-bottom: 120px; }
  .why-section h2    { font-size: 40px; }
  .why-grid          { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}

@media (min-width: 900px) {
  .mission-hero { grid-template-columns: 1fr 1fr; gap: 48px; }
}


/* ─────────────────────────────────────────────────
   16. PAGE: HOSTING & SUPPORT (hosting.html)
   ───────────────────────────────────────────────── */

.hero-hosting {
  padding: 64px 0 40px;
  text-align: center;
}

.hero-hosting h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-hosting h1 .accent { color: var(--primary); }

.hero-hosting p {
  font-size: 16px;
  color: var(--on-surface-variant);
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 80px;
}

.plan-card {
  background-color: var(--surface-container-high);
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 1px solid var(--bevel-top);
  box-shadow: var(--tech-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tech-shadow), var(--card-shadow-hover-strong);
}

.plan-card.featured {
  background-color: var(--surface-variant);
  border: 2px solid var(--primary);
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 8px;
}

.plan-desc {
  color: var(--on-surface-variant);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}

.plan-price .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--primary);
}

.plan-price .period {
  color: var(--on-surface-variant);
  font-size: 15px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.plan-features .icon {
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.plan-features li.disabled {
  color: var(--on-surface-variant);
  opacity: 0.55;
}

.plan-features li.disabled .icon { color: var(--on-surface-variant); }

.btn-plan-primary,
.btn-plan-outline {
  width: 100%;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-plan-primary {
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 600;
  border: none;
}

.btn-plan-primary:hover {
  background: var(--primary-container);
  box-shadow: var(--glow-primary);
}

.btn-plan-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 500;
}

.btn-plan-outline:hover { background: rgba(255, 185, 124, 0.08); }

/* Support add-on */
.support-card {
  background: var(--surface-container);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--divider-strong);
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}

.support-card .glow-blob {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 185, 124, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.support-left,
.support-right {
  position: relative;
  z-index: 1;
  flex: 1;
}

.support-left h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  margin: 20px 0 16px;
}

.support-left p {
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.support-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.support-features .icon {
  color: var(--primary);
  font-size: 22px;
  margin-top: 1px;
  flex-shrink: 0;
}

.support-pricing-card {
  background: var(--surface-dim);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--divider-soft);
  box-shadow: var(--tech-shadow);
}

.support-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--divider-soft);
}

.support-pricing-row:last-of-type { border-bottom: none; }

.support-pricing-row .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}

.support-pricing-row .price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  font-size: 18px;
}

.support-pricing-row .price span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--on-surface-variant);
}

.btn-support {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: transparent;
  color: var(--on-surface);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border: 2px solid var(--surface-variant);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-support:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (min-width: 768px) {
  .hero-hosting          { padding: 96px 0 56px; }
  .hero-hosting h1       { font-size: 64px; letter-spacing: -0.02em; }
  .hero-hosting p        { font-size: 18px; }
  .pricing-grid          { grid-template-columns: repeat(3, 1fr); padding-bottom: 120px; }
  .plan-card.featured    { transform: translateY(-16px); }
  .plan-card.featured:hover { transform: translateY(-20px); }
  .support-card {
    flex-direction: row;
    align-items: center;
    padding: 48px;
    margin-bottom: 120px;
  }
  .support-left h2 { font-size: 36px; }
}


/* ─────────────────────────────────────────────────
   17. PAGE: CONTACT (contact.html)
   ───────────────────────────────────────────────── */

.hero-contact {
  padding: 64px 0 40px;
  text-align: center;
}

.hero-contact h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-contact p {
  color: var(--on-surface-variant);
  font-size: 16px;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 80px;
}

.form-card,
.info-card,
.map-card {
  background: var(--surface-container);
  border-radius: var(--radius-xl);
  padding: 28px;
  border-top: 1px solid var(--bevel-top-soft);
}

.form-card h2,
.info-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--on-surface-variant);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface-container-lowest);
  border: 1px solid var(--surface-variant);
  color: var(--on-surface);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--on-surface-variant);
  opacity: 0.6;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 185, 124, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dcc2ae'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.submit-btn {
  margin-top: 8px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  background: var(--primary-container);
  box-shadow: var(--glow-primary);
}

/* Contact info */
.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.info-row + .info-row {
  border-top: 1px solid var(--divider);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-variant);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-surface-variant);
}

.info-value {
  font-size: 15px;
  color: var(--on-surface);
  text-decoration: none;
  line-height: 1.4;
}

a.info-value:hover { color: var(--primary); }

/* Map placeholder */
.map-card {
  margin-top: 24px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #061a2e 0%, #0c2236 100%);
}

.map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 185, 124, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 185, 124, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-pin {
  position: relative;
  z-index: 1;
  color: var(--primary);
  margin-bottom: 12px;
}

.map-pin .material-symbols-outlined {
  font-size: 56px;
  filter: drop-shadow(0 0 16px rgba(255, 185, 124, 0.4));
}

.map-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-surface-variant);
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) {
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hero-contact    { padding: 96px 0 56px; }
  .hero-contact h1 { font-size: 64px; }
  .hero-contact p  { font-size: 18px; }
  .form-card       { padding: 40px; }
  .info-card       { padding: 36px; }
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    padding-bottom: 120px;
  }
}


/* ─────────────────────────────────────────────────
   18. PAGE: TOOLS & TIPS (tools.html)
   ───────────────────────────────────────────────── */

.hero-tools { padding: 64px 0 56px; }

.hero-tools h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-tools h1 .accent { color: var(--primary); }

.hero-tools p {
  color: var(--on-surface-variant);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-bottom: 80px;
}

.tool-card {
  background: var(--surface-container);
  border-radius: var(--radius-xl);
  padding: 20px;
  border-top: 1px solid var(--bevel-top-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover-strong);
}

.tool-image {
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  background: var(--surface-container-lowest);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tool-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 185, 124, 0.15) 0%, transparent 60%);
}

.tool-image .icon-large {
  font-size: 64px;
  color: var(--primary);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(255, 185, 124, 0.4));
}

.tool-image.vscode   { background: linear-gradient(135deg, #0a1828 0%, #1a2438 100%); }
.tool-image.figma    { background: linear-gradient(135deg, #0c1f30 0%, #1c2f44 100%); }
.tool-image.docker   { background: linear-gradient(135deg, #0a1e30 0%, #1a3046 100%); }
.tool-image.react    { background: linear-gradient(135deg, #0e1a2a 0%, #1c2b40 100%); }
.tool-image.tailwind { background: linear-gradient(135deg, #051828 0%, #0c2236 100%); }
.tool-image.postman  { background: linear-gradient(135deg, #0a1a2e 0%, #1a2c44 100%); }

.tool-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.tool-card p {
  color: var(--on-surface-variant);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tool-link .material-symbols-outlined {
  font-size: 16px;
  transition: transform 0.25s;
}

.tool-card:hover .tool-link .material-symbols-outlined {
  transform: translateX(4px);
}

@media (min-width: 600px) {
  .tools-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hero-tools     { padding: 96px 0 80px; }
  .hero-tools h1  { font-size: 56px; }
  .hero-tools p   { font-size: 17px; }
}

@media (min-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 120px;
  }
}
