@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

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

:root {
  --bg-base:       #04050d;
  --bg-surface:    #080b16;
  --bg-elevated:   #0d1120;
  --bg-card:       #0f1424;
  --bg-card-hover: #141a2e;

  --border-subtle:  rgba(255,255,255,0.055);
  --border-mid:     rgba(255,255,255,0.09);
  --border-strong:  rgba(255,255,255,0.18);
  --border-accent:  rgba(77,114,255,0.50);
  --border-accent-soft: rgba(77,114,255,0.22);

  --white:          #ffffff;
  --text-primary:   #eef0ff;
  --text-secondary: #7c82a0;
  --text-muted:     #3d4260;

  --accent:        #1a3cff;
  --accent-mid:    #2a52ff;
  --accent-bright: #5578ff;
  --accent-glow:   rgba(26,60,255,0.55);
  --accent-halo:   rgba(26,60,255,0.12);

  --grad-btn:          linear-gradient(135deg, #1535ee 0%, #3a62ff 50%, #5578ff 100%);
  --grad-btn-hover:    linear-gradient(135deg, #2040f5 0%, #4570ff 50%, #6688ff 100%);
  --grad-hero:         radial-gradient(ellipse 100% 80% at 50% -5%, rgba(26,60,255,0.28) 0%, rgba(26,60,255,0.06) 45%, transparent 70%);
  --grad-glow:         radial-gradient(ellipse 65% 55% at 50% 50%, rgba(26,60,255,0.20) 0%, transparent 70%);
  --grad-text-primary: linear-gradient(160deg, #ffffff 35%, #99aaff 100%);
  --grad-text-logo:    linear-gradient(135deg, #ffffff 20%, #7b9cff 100%);

  --shadow-card:         0 1px 2px rgba(0,0,0,0.5), 0 4px 24px rgba(0,0,0,0.55);
  --shadow-card-strong:  0 2px 4px rgba(0,0,0,0.6), 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  --shadow-hover:        0 0 0 1px rgba(77,114,255,0.38), 0 12px 48px rgba(0,0,0,0.65), 0 0 80px rgba(26,60,255,0.16);
  --shadow-btn:          0 2px 8px rgba(0,0,0,0.4), 0 4px 28px rgba(26,60,255,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
  --shadow-btn-hover:    0 4px 12px rgba(0,0,0,0.5), 0 8px 44px rgba(26,60,255,0.75), inset 0 1px 0 rgba(255,255,255,0.20);
  --shadow-float:        0 4px 24px rgba(26,60,255,0.60), 0 0 0 1px rgba(77,114,255,0.35), inset 0 1px 0 rgba(255,255,255,0.18);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --dur:      0.22s;
  --dur-slow: 0.38s;

  --max-w:     1160px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.015em; }

p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.75;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* ── HEADER ── */

header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  height: 72px;
  background: rgba(4,5,13,0.85);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.4);
}

header > div {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

header > div > a {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-shrink: 0;
}

header > div > a strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad-text-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header > div > a span {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

header > div > nav ul {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

header > div > nav ul li a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

header > div > nav ul li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

header > div > div > a {
  display: inline-flex;
  align-items: center;
  background: var(--grad-btn);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
  border: 1px solid rgba(100,140,255,0.25);
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

header > div > div > a:hover {
  background: var(--grad-btn-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
}

/* ── HERO ── */

#hero {
  position: relative;
  padding: 10rem 2rem 9rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg-base);
  z-index: 1;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,60,255,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

#hero > * { position: relative; z-index: 1; }

#hero h1 {
  max-width: 860px;
  margin: 0 auto 1.75rem;
  background: var(--grad-text-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

#hero > p {
  max-width: 560px;
  margin: 0 auto 3.25rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 300;
}

#hero > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

#hero > div a:first-child {
  display: inline-flex;
  align-items: center;
  background: var(--grad-btn);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-btn);
  border: 1px solid rgba(100,140,255,0.25);
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

#hero > div a:first-child:hover {
  background: var(--grad-btn-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn-hover);
}

#hero > div a:last-child {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-mid);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

#hero > div a:last-child:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* ── SECTION BASE ── */

section {
  position: relative;
  padding: 8rem 2rem;
  z-index: 1;
}

section > h2 { margin-bottom: 0.875rem; }

section > p:first-of-type {
  margin-bottom: 4rem;
  font-size: 1.0625rem;
  max-width: 500px;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ── SELECTED WORK ── */

#work {
  background: var(--bg-surface);
  padding: 8rem 2rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

#work > h2,
#work > p:first-of-type {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

#work > h2 { margin-bottom: 0.875rem; }
#work > p:first-of-type { margin-bottom: 3.5rem; }

#work > div {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

#work article {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}

#work article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

#work article > p:first-of-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin: 0;
}

#work article h3 {
  color: var(--text-primary);
  font-weight: 700;
}

#work article > p:nth-of-type(2) {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-grow: 1;
  font-weight: 300;
}

#work article ul {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#work article ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #c8cfff;
  line-height: 1.45;
}

#work article ul li::before {
  content: '→';
  color: var(--accent-bright);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* ── SERVICES ── */

#services {
  background: var(--bg-base);
  padding: 8rem 2rem;
}

#services > h2,
#services > p:first-of-type {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

#services > h2 { margin-bottom: 0.875rem; }
#services > p:first-of-type { margin-bottom: 3.5rem; }

#services > div {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

#services article {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              border-color var(--dur) var(--ease);
}

#services article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-btn);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  box-shadow: 0 0 16px var(--accent-glow);
}

#services article:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent-soft);
  box-shadow: var(--shadow-hover);
}

#services article:hover::before { opacity: 1; }

#services article h3 {
  color: var(--text-primary);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#services article h3::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--grad-btn);
  box-shadow: 0 0 14px var(--accent-glow);
}

#services article > p {
  font-size: 0.9125rem;
  color: var(--text-secondary);
  flex-grow: 1;
  font-weight: 300;
}

#services article ul {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#services article ul li {
  font-size: 0.845rem;
  color: var(--text-secondary);
  padding-left: 1.125rem;
  position: relative;
  line-height: 1.5;
}

#services article ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 0.5rem;
  color: var(--accent-bright);
}

/* ── PROCESS ── */

#process {
  background: var(--bg-surface);
  padding: 8rem 2rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

#process > h2,
#process > p:first-of-type {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

#process > h2 { margin-bottom: 0.875rem; }
#process > p:first-of-type { margin-bottom: 3.5rem; }

#process ol {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: steps;
}

#process ol li {
  counter-increment: steps;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.125rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              border-color var(--dur) var(--ease);
}

#process ol li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-accent);
}

#process ol li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
  background: rgba(26,60,255,0.14);
  border: 1px solid rgba(77,114,255,0.30);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  line-height: 1.5;
  box-shadow: 0 0 12px rgba(26,60,255,0.18);
}

#process ol li h3 {
  color: var(--text-primary);
  font-weight: 700;
}

#process ol li p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ── ABOUT ── */

#about {
  background: var(--bg-base);
  padding: 8rem 2rem;
}

#about > * {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

#about > h2 {
  background: var(--grad-text-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.75rem;
  font-weight: 800;
}

#about > h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--accent-bright);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 2.25rem;
}

#about > p {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text-secondary);
  margin-bottom: 1.375rem;
  font-weight: 300;
}

#about > p:last-of-type { margin-bottom: 0; }

#about > ul {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0;
  max-width: 720px;
}

#about > ul li {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #c8cfff;
  line-height: 1.5;
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

#about > ul li:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 1px rgba(77,114,255,0.12), 0 4px 24px rgba(0,0,0,0.5);
}

/* ── CTA ── */

#cta {
  position: relative;
  background: var(--bg-surface);
  text-align: center;
  padding: 10rem 2rem;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  z-index: 1;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(26,60,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

#cta > * { position: relative; z-index: 1; }

#cta h2 {
  max-width: 720px;
  margin: 0 auto 1.375rem;
  background: var(--grad-text-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

#cta > p:first-of-type {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 3.25rem;
  font-size: 1.0625rem;
  font-weight: 300;
}

#cta > a {
  display: inline-flex;
  align-items: center;
  background: var(--grad-btn);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 1.125rem 2.875rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-btn);
  border: 1px solid rgba(100,140,255,0.25);
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

#cta > a:hover {
  background: var(--grad-btn-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn-hover);
}

#cta > p:last-of-type {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

/* ── FOOTER ── */

footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
}

footer > div {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer > div > div {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

footer > div > div strong {
  font-family: var(--font-display);
  font-size: 1.175rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad-text-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer > div > div span {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

footer > div > nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.125rem;
}

footer > div > nav ul li a {
  font-size: 0.845rem;
  color: var(--text-secondary);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

footer > div > nav ul li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

footer > div > p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── FLOATING WIDGET ── */

#floating-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

#floating-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-btn);
  box-shadow: var(--shadow-float);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
  overflow: hidden;
  text-indent: -9999px;
  position: relative;
  border: 1px solid rgba(120,160,255,0.30);
}

#floating-widget a::before {
  content: '📅';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-indent: 0;
  font-size: 1.4rem;
  line-height: 64px;
  text-align: center;
}

#floating-widget a:hover {
  background: var(--grad-btn-hover);
  transform: scale(1.10) translateY(-2px);
  box-shadow: 0 0 0 5px rgba(26,60,255,0.22), 0 14px 48px rgba(26,60,255,0.75), inset 0 1px 0 rgba(255,255,255,0.20);
}

/* ── SCROLLBAR ── */

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1a3cff, #5578ff);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #2a4fff, #6688ff); }

::selection { background: rgba(26,60,255,0.40); color: var(--white); }

/* ── RESPONSIVE ── */

@media (max-width: 1080px) {
  #work > div,
  #services > div {
    grid-template-columns: repeat(2, 1fr);
  }
  #process ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header { height: 64px; }
  header > div > nav { display: none; }

  section,
  #work,
  #services,
  #process,
  #about,
  #cta { padding: 5.5rem 1.5rem; }

  #hero { padding: 7rem 1.5rem 5.5rem; }

  #work > div,
  #services > div,
  #process ol { grid-template-columns: 1fr; }

  #about > ul { grid-template-columns: 1fr; }

  footer > div { flex-direction: column; align-items: flex-start; }

  #floating-widget { bottom: 1.5rem; right: 1.5rem; }
  #floating-widget a { width: 58px; height: 58px; }
  #floating-widget a::before { line-height: 58px; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  #hero > div { flex-direction: column; align-items: stretch; }
  #hero > div a { justify-content: center; }

  header > div { padding: 0 1.25rem; }

  section,
  #work,
  #services,
  #process,
  #about,
  #cta { padding: 4.5rem 1.25rem; }
}